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

net.alantea.swing.pageelements.access.ActionAccess Maven / Gradle / Ivy

package net.alantea.swing.pageelements.access;

/**
 * The Class FieldAccess.
 */
public class ActionAccess
{
   /** The key. */
   private String key;
   
   /** The page. */
   private String action;
   
   /**
    * Instantiates a new action access.
    *
    * @param key the key
    * @param action the action
    */
   public ActionAccess(String key, String action)
   {
      this.key = key;
      this.action = action;
   }

   /**
    * Gets the key.
    *
    * @return the key
    */
   public String getKey()
   {
      return key;
   }

   /**
    * Gets the action.
    *
    * @return the action
    */
   public String getAction()
   {
      return action;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy