nyla.solutions.global.patterns.Delegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.global Show documentation
Show all versions of nyla.solutions.global Show documentation
Nyla Solutions Global Java API provides support for basic application
utilities (application configuration, data encryption, debugger and text
processing).
The newest version!
/**
* Created on Feb 21, 2004
*
* Delegate
*/
package nyla.solutions.global.patterns;
import nyla.solutions.global.security.data.SecurityCredential;
/**
* @author green_gregory
* @version 1.0
*
* Delegate abstract delegate class
*
*/
public abstract class Delegate
{
public Delegate()
{
}// --------------------------------------------
public Delegate(SecurityCredential aUser)
{
setUser(aUser);
}
/**
* @return Returns the user.
*/
public final SecurityCredential getUser()
{
return user;
}// --------------------------------------------
/**
* @param user The user to set.
*/
public final void setUser(SecurityCredential user)
{
this.user = user;
}// --------------------------------------------
private SecurityCredential user = null;
}