* <p>
* @param customer Source instance
*/
- public void copyAll (final User customer);
+ void copyAll (final User customer);
/**
* Getter for account status
* <p>
* @return Account status
*/
- public UserAccountStatus getUserAccountStatus ();
+ UserAccountStatus getUserAccountStatus ();
/**
* Setter for account status
* <p>
* @param customerStatus Account status
*/
- public void setUserAccountStatus (final UserAccountStatus customerStatus);
+ void setUserAccountStatus (final UserAccountStatus customerStatus);
/**
* Getter for confirmation key
* <p>
* @return Confirmation key
*/
- public String getUserConfirmKey ();
+ String getUserConfirmKey ();
/**
* Setter for confirmation key
* <p>
* @param customerConfirmKey Confirmation key
*/
- public void setUserConfirmKey (final String customerConfirmKey);
+ void setUserConfirmKey (final String customerConfirmKey);
/**
* Getter for contact instance
* <p>
* @return Contact id number
*/
- public Contact getUserContact ();
+ Contact getUserContact ();
/**
* Setter for contact instance
* <p>
* @param contact Contact instance
*/
- public void setUserContact (final Contact contact);
+ void setUserContact (final Contact contact);
/**
* Getter for "created" timestamp
* <p>
* @return "created" timestamp
*/
- public Calendar getUserCreated ();
+ Calendar getUserCreated ();
/**
* Setter for "created" timestamp
* <p>
* @param customerCreated "created" timestamp
*/
- public void setUserCreated (final Calendar customerCreated);
+ void setUserCreated (final Calendar customerCreated);
/**
* Getter for encrypted password
* <p>
* @return Encrypted password
*/
- public String getUserEncryptedPassword ();
+ String getUserEncryptedPassword ();
/**
* Setter for password hash
* <p>
* @param userEncryptedPassword Encrypted password
*/
- public void setUserEncryptedPassword (final String userEncryptedPassword);
+ void setUserEncryptedPassword (final String userEncryptedPassword);
/**
* Getter for customer id number
* <p>
* @return User id number
*/
- public Long getUserId ();
+ Long getUserId ();
/**
* Settte for customer id number
* <p>
* @param customerId User id number
*/
- public void setUserId (final Long customerId);
+ void setUserId (final Long customerId);
/**
* Getter for "locked" timestamp
* <p>
* @return "locked" timestamp
*/
- public Calendar getUserLocked ();
+ Calendar getUserLocked ();
/**
* Getter for "locked" timestamp
* <p>
* @param customerLocked "locked" timestamp
*/
- public void setUserLocked (final Calendar customerLocked);
+ void setUserLocked (final Calendar customerLocked);
/**
* Getter for customer number
* <p>
* @return User number
*/
- public String getUserName ();
+ String getUserName ();
/**
* Setter for customer number
* <p>
* @param customerNumber User number
*/
- public void setUserName (final String customerNumber);
+ void setUserName (final String customerNumber);
/**
* Getter for public user profile flag
* <p>
* @return Whether the user has a public profile
*/
- public Boolean getUserPublicProfile ();
+ Boolean getUserPublicProfile ();
/**
* Setter for public user profile flag
* <p>
* @param userPublicProfile Whether the user has a public profile
*/
- public void setUserPublicProfile (final Boolean userPublicProfile);
+ void setUserPublicProfile (final Boolean userPublicProfile);
/**
* Checks if object is a User instance and whether it matches with this
* @return Whether it matches this object
*/
@Override
- public boolean equals (final Object object);
+ boolean equals (final Object object);
/**
* Hash code caluclation for this object
* @return Hash code for this object
*/
@Override
- public int hashCode ();
+ int hashCode ();
}