java.lang.Object
org.gcube.informationsystem.base.impl.ElementImpl
org.gcube.informationsystem.base.impl.properties.PropertyElementImpl
org.gcube.informationsystem.model.impl.properties.PropertyImpl
org.gcube.resourcemanagement.model.impl.properties.GCubePropertyImpl
org.gcube.resourcemanagement.model.impl.properties.ValueSchemaImpl
All Implemented Interfaces:
Serializable, org.gcube.informationsystem.base.reference.Element, org.gcube.informationsystem.base.reference.properties.PropertyElement, org.gcube.informationsystem.base.reference.SchemaMixedElement, org.gcube.informationsystem.model.reference.ModelElement, org.gcube.informationsystem.model.reference.properties.Property, GCubeProperty, TypedProperty<URI,String>, ValidatedTypedProperty<URI,String>, ValueSchema

public class ValueSchemaImpl extends GCubePropertyImpl implements ValueSchema
A property with an URI as value
Author:
Luca Frosini (ISTI - CNR)
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.gcube.resourcemanagement.model.reference.properties.ValueSchema

    ValueSchema.SchemaValidator
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected URI
     
    protected String
     

    Fields inherited from class org.gcube.informationsystem.base.impl.properties.PropertyElementImpl

    additionalProperties, allowedAdditionalKeys, expectedtype, supertypes

    Fields inherited from interface org.gcube.informationsystem.base.reference.Element

    DATETIME_PATTERN, NAME, TYPE_PROPERTY

    Fields inherited from interface org.gcube.resourcemanagement.model.reference.properties.GCubeProperty

    NAME

    Fields inherited from interface org.gcube.informationsystem.model.reference.ModelElement

    EXPECTED_TYPE_PROPERTY, SUPERTYPES_PROPERTY

    Fields inherited from interface org.gcube.informationsystem.model.reference.properties.Property

    NAME

    Fields inherited from interface org.gcube.resourcemanagement.model.reference.properties.ValueSchema

    NAME
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    An URI containing a schema used to validate/interpret the content of the value.
    The value which schema is available at the URI provided in the schema property.
    void
    setSchema(URI schema)
    Sets an URI containing a schema used to validate/interpret the content of the value.
    void
    Sets the value which schema is available at the URI provided in the schema property.

    Methods inherited from class org.gcube.informationsystem.base.impl.properties.PropertyElementImpl

    addAllowedAdditionalKey, getAdditionalProperties, getAdditionalProperty, getExpectedtype, getSupertypes, setAdditionalProperties, setAdditionalProperty

    Methods inherited from class org.gcube.informationsystem.base.impl.ElementImpl

    getTypeName, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.gcube.informationsystem.base.reference.Element

    getTypeName

    Methods inherited from interface org.gcube.informationsystem.model.reference.ModelElement

    getExpectedtype, getSupertypes

    Methods inherited from interface org.gcube.informationsystem.model.reference.properties.Property

    getAdditionalProperties, getAdditionalProperty, setAdditionalProperties, setAdditionalProperty

    Methods inherited from interface org.gcube.resourcemanagement.model.reference.properties.ValueSchema

    validate
  • Field Details

    • value

      protected String value
    • schema

      protected URI schema
  • Constructor Details

    • ValueSchemaImpl

      public ValueSchemaImpl()
  • Method Details

    • getValue

      public String getValue()
      Description copied from interface: ValueSchema
      The value which schema is available at the URI provided in the schema property.
      Specified by:
      getValue in interface TypedProperty<URI,String>
      Specified by:
      getValue in interface ValueSchema
      Returns:
      the value which schema is available at the URI provided in the schema property.
    • setValue

      public void setValue(String value)
      Description copied from interface: ValueSchema
      Sets the value which schema is available at the URI provided in the schema property.
      Specified by:
      setValue in interface TypedProperty<URI,String>
      Specified by:
      setValue in interface ValueSchema
      Parameters:
      value - the value to set
    • getSchema

      public URI getSchema()
      Description copied from interface: ValueSchema
      An URI containing a schema used to validate/interpret the content of the value. It is only an informative field. The validation is in charge of the client.
      Specified by:
      getSchema in interface TypedProperty<URI,String>
      Specified by:
      getSchema in interface ValueSchema
      Returns:
      an URI containing a schema used to validate/interpret the content of the value. It is only an informative field. The validation is in charge of the client.
    • setSchema

      public void setSchema(URI schema)
      Description copied from interface: ValueSchema
      Sets an URI containing a schema used to validate/interpret the content of the value. It is only an informative field. The validation is charge of the client.
      Specified by:
      setSchema in interface TypedProperty<URI,String>
      Specified by:
      setSchema in interface ValueSchema
      Parameters:
      schema - an URI containing a schema used to validate/interpret the content of the value. It is only an informative field. The validation is charge of the client.