Class CollectionProperty

java.lang.Object
com.skava.model.datatransferobjects.CollectionProperty
All Implemented Interfaces:
Serializable

public class CollectionProperty extends Object implements Serializable
This class defines the model for CollectionProperty (Data Transfer Object) holds the collection property details.
Author:
Infosys Equinox
See Also:
  • Field Details

    • id

      protected Long id
      The id.
    • createdOn

      protected Date createdOn
      The Created On.
    • createdBy

      protected Long createdBy
      The created by.
    • updatedOn

      protected Date updatedOn
      The Updated On.
    • value

      protected String value
      The value.
    • updatedBy

      protected Long updatedBy
      The updated by.
    • name

      protected String name
      The name.
    • collectionId

      protected Long collectionId
      The collection id.
    • attributeId

      protected long attributeId
      The attribute id.
  • Constructor Details

    • CollectionProperty

      public CollectionProperty()
      The collection property object.
    • CollectionProperty

      public CollectionProperty(CollectionPropertyEntity properties)
      Instantiates a new collection property with constructor of CollectionPropertyEntity.
      Parameters:
      properties - Holds CollectionPropertyEntity object for creating collection property.
    • CollectionProperty

      public CollectionProperty(String name, String value)
      Instantiates a new collection property with constructor of name and value.
      Parameters:
      name - Indicates the name of the collection property.
      value - Indicates the value of the collection property.
  • Method Details