Class TypedAttributeValueDTO


  • public class TypedAttributeValueDTO
    extends org.osgi.dto.DTO
    A representation of a typed property
    • Field Summary

      Fields 
      Modifier and Type Field Description
      boolean multiValue
      Indicates if the property can have multiple values.
      java.lang.String type
      The type of the property.
      java.util.List<java.lang.String> values
      A list of values.
    • Method Summary

      • Methods inherited from class org.osgi.dto.DTO

        toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • type

        public java.lang.String type
        The type of the property.

        The type must be the name of the scalar type (eg: String). This field must not be null.

      • multiValue

        public boolean multiValue
        Indicates if the property can have multiple values.

        If it is not specified this field must be set to false.

      • values

        public java.util.List<java.lang.String> values
        A list of values.

        If it not specified this field must be empty.

    • Constructor Detail

      • TypedAttributeValueDTO

        public TypedAttributeValueDTO()