Package com.skava.entities
Class PropertiesEntity
java.lang.Object
com.skava.entities.PropertiesEntity
- All Implemented Interfaces:
Serializable
This class defines the Properties entity. This entity contains the following relationships properties -
Many to one with User entity. Properties holds the custom properties defined by the user.
- Author:
- Infosys Equinox
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptiondefault constructor.PropertiesEntity
(String name, String value, UsersEntity user) Instantiates a new user properties entity object. -
Method Summary
-
Constructor Details
-
PropertiesEntity
public PropertiesEntity()default constructor. Instantiates a new user properties entity. -
PropertiesEntity
Instantiates a new user properties entity object.- Parameters:
name
- Indicates the name of the custom propertiesvalue
- Indicates the value of the custom propertiesuser
- HoldsUsersEntity
object for creating properties entity object.
-