All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nyla.solutions.global.patterns.Delegate Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy