001: /*
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * Initial developer(s): Michel-Ange ANTON
022: * --------------------------------------------------------------------------
023: * $Id: RoleMemoryRealmForm.java 6599 2005-04-21 08:59:54Z kemlerp $
024: * --------------------------------------------------------------------------
025: */
026:
027: package org.objectweb.jonas.webapp.jonasadmin.security;
028:
029: import javax.servlet.http.HttpServletRequest;
030:
031: import org.apache.struts.action.ActionMessage;
032: import org.apache.struts.action.ActionErrors;
033: import org.apache.struts.action.ActionForm;
034: import org.apache.struts.action.ActionMapping;
035:
036: public class RoleMemoryRealmForm extends ActionForm {
037:
038: // --------------------------------------------------------- Constants
039:
040: // --------------------------------------------------------- Properties variables
041:
042: private String action = null;
043: private String role = null;
044: private String description = null;
045:
046: // --------------------------------------------------------- Public Methods
047:
048: /**
049: * Reset all properties to their default values.
050: *
051: * @param mapping The mapping used to select this instance
052: * @param request The servlet request we are processing
053: */
054: public void reset(ActionMapping mapping, HttpServletRequest request) {
055: }
056:
057: /**
058: * Validate the properties that have been set from this HTTP request,
059: * and return an <code>ActionErrors</code> object that encapsulates any
060: * validation errors that have been found. If no errors are found, return
061: * <code>null</code> or an <code>ActionErrors</code> object with no
062: * recorded error messages.
063: *
064: * @param mapping The mapping used to select this instance
065: * @param request The servlet request we are processing
066: */
067: public ActionErrors validate(ActionMapping mapping,
068: HttpServletRequest request) {
069: ActionErrors oErrors = new ActionErrors();
070: // Create errors
071: if (action.equals("create") == true) {
072: role = role.trim();
073: if (role.length() == 0) {
074: oErrors
075: .add(
076: "role",
077: new ActionMessage(
078: "error.security.factory.memory.realm.role.name.required"));
079: }
080: }
081: return oErrors;
082: }
083:
084: // --------------------------------------------------------- Properties Methods
085:
086: public String getRole() {
087: return role;
088: }
089:
090: public void setRole(String role) {
091: this .role = role;
092: }
093:
094: public String getDescription() {
095: return description;
096: }
097:
098: public void setDescription(String description) {
099: this .description = description;
100: }
101:
102: public String getAction() {
103: return action;
104: }
105:
106: public void setAction(String action) {
107: this.action = action;
108: }
109:
110: }
|