Package com.skava.model.domain
Class IdentitiesDomain
java.lang.Object
com.skava.model.domain.IdentitiesDomain
This class defines the model Identities (Domain Object) holds the identities details. Identities holds
information like email / phone number which is considered as the identity of a user.
- Author:
- Infosys Equinox
-
Constructor Summary
ConstructorsConstructorDescriptiondefault constructor.IdentitiesDomain
(long id, String identity, int type, String identityType, String status) Creates a new IdentitiesDomain object with constructor parameter of id, identity, type, identitytype and status. -
Method Summary
-
Constructor Details
-
IdentitiesDomain
public IdentitiesDomain()default constructor. -
IdentitiesDomain
Creates a new IdentitiesDomain object with constructor parameter of id, identity, type, identitytype and status.- Parameters:
id
- Indicates the identifier of an identity.identity
- Indicates the identity that is either email or phoneNumber.type
- Indicates the user type that is 1 for register user and 2 for guest user.identityType
- Indicates the identity type which is used to choose the login type.status
- Indicates the user status that is either active or inactive or notactivated.
-