Class PropertyLink

java.lang.Object
com.genologics.ri.property.PropertyLink
All Implemented Interfaces:
Serializable

public class PropertyLink extends Object implements Serializable
property-link is a child element type of property and provides a URI linking to the detailed representation of a property.
See Also:
  • Field Details

    • uri

      protected URI uri
      The URI of the property.
    • name

      protected String name
      The name of the property.
    • value

      protected String value
      The value of the property.
  • Constructor Details

    • PropertyLink

      public PropertyLink()
      Default constructor.
    • PropertyLink

      public PropertyLink(URI uri)
      Constructor with URI.
      Parameters:
      uri - The URI of the property.
    • PropertyLink

      public PropertyLink(URI uri, String name, String value)
      Constructor with URI, name, and value.
      Parameters:
      uri - The URI of the property.
      name - The name of the property.
      value - The value of the property.
  • Method Details

    • getUri

      public URI getUri()
      Gets the URI of the property.
      Returns:
      The property URI.
    • setUri

      public void setUri(URI uri)
      Sets the URI of the property.
      Parameters:
      uri - The property URI.
    • getName

      public String getName()
      Gets the name of the property.
      Returns:
      The property name.
    • setName

      public void setName(String name)
      Sets the name of the property.
      Parameters:
      name - The property name.
    • getValue

      public String getValue()
      Gets the value of the property.
      Returns:
      The property value.
    • setValue

      public void setValue(String value)
      Sets the value of the property.
      Parameters:
      value - The property value.