com.addc.server.commons.struts12.actions.AccessDeniedActionForm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addc-svr-struts12 Show documentation
Show all versions of addc-svr-struts12 Show documentation
Classes to support web apps written for struts 1.2.
package com.addc.server.commons.struts12.actions;
import org.apache.struts.action.ActionForm;
/**
* The AccessDeniedActionForm supplies data for the acess denied jsp page
*/
public class AccessDeniedActionForm extends ActionForm {
private static final long serialVersionUID= -6667245181136424639L;
private String userName;
private String permissions;
/**
* Get the userName
*
* @return the userName
*/
public String getUserName() {
return userName;
}
/**
* Set the userName value
*
* @param userName
* the userName to set
*/
public void setUserName(String userName) {
this.userName= userName;
}
/**
* Get the permissions
*
* @return the permissions
*/
public String getPermissions() {
return permissions;
}
/**
* Set the permissions value
*
* @param permissions
* the permissions to set
*/
public void setPermissions(String permissions) {
this.permissions= permissions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy