Package com.skava.entities
Class AddressPropertiesEntity
java.lang.Object
com.skava.entities.AddressPropertiesEntity
- All Implemented Interfaces:
Serializable
@Entity(name="useraddressproperties")
public class AddressPropertiesEntity
extends Object
implements 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 address.
- Author:
- boopathi.t
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptiondefault constructor.AddressPropertiesEntity
(String name, String value, AddressesEntity address) Instantiates a new user properties entity object. -
Method Summary
-
Constructor Details
-
AddressPropertiesEntity
public AddressPropertiesEntity()default constructor. Instantiates a new user address properties entity. -
AddressPropertiesEntity
Instantiates a new user properties entity object.- Parameters:
name
- Indicates the name of the custom propertiesvalue
- Indicates the value of the custom propertiesaddress
- HoldsAddressesEntity
object for creating properties entity object.
-