📄 securityrolereftype.java
字号:
/* * This class was automatically generated with * <a href="http://www.castor.org">Castor 0.9.5.2</a>, using an XML * Schema. * $Id: SecurityRoleRefType.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.portletcontainer.impl.descriptor;//---------------------------------///- Imported classes and packages -///---------------------------------/import org.exolab.castor.xml.Marshaller;import org.exolab.castor.xml.Unmarshaller;import java.util.ArrayList;/** * The security-role-ref element contains the declaration of a * security role reference in the code of the web application. The * <p/> * declaration consists of an optional description, the security * role name used in the code, and an optional link to a security * role. If the security role is not specified, the Deployer must * choose an appropriate security role. * The value of the role name element must be the String used * as the parameter to the * EJBContext.isCallerInRole(String roleName) method * or the HttpServletRequest.isUserInRole(String role) method. * Used in: portlet * * @version $Revision: 3298 $ $Date: 2004-06-29 07:19:44 -0700 (Tue, 29 Jun 2004) $ */public class SecurityRoleRefType implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Field _id */ protected java.lang.String _id; /** * Field _descriptionList */ protected java.util.ArrayList _descriptionList; /** * Field _roleName */ protected org.gridsphere.portletcontainer.impl.descriptor.RoleName _roleName; /** * Field _roleLink */ protected org.gridsphere.portletcontainer.impl.descriptor.RoleLink _roleLink; //----------------/ //- Constructors -/ //----------------/ public SecurityRoleRefType() { super(); _descriptionList = new ArrayList(); } //-- org.gridsphere.portletcontainer.jsr.descriptor.SecurityRoleRefType() //-----------/ //- Methods -/ //-----------/ /** * Method addDescription * * @param vDescription */ public void addDescription(org.gridsphere.portletcontainer.impl.descriptor.Description vDescription) throws java.lang.IndexOutOfBoundsException { _descriptionList.add(vDescription); } //-- void addDescription(org.gridsphere.portletcontainer.jsr.descriptor.Description) /** * Method addDescription * * @param index * @param vDescription */ public void addDescription(int index, org.gridsphere.portletcontainer.impl.descriptor.Description vDescription) throws java.lang.IndexOutOfBoundsException { _descriptionList.add(index, vDescription); } //-- void addDescription(int, org.gridsphere.portletcontainer.jsr.descriptor.Description) /** * Method clearDescription */ public void clearDescription() { _descriptionList.clear(); } //-- void clearDescription() /** * Method enumerateDescription */ public java.util.Enumeration enumerateDescription() { return new org.exolab.castor.util.IteratorEnumeration(_descriptionList.iterator()); } //-- java.util.Enumeration enumerateDescription() /** * Method getDescription * * @param index */ public org.gridsphere.portletcontainer.impl.descriptor.Description getDescription(int index) throws java.lang.IndexOutOfBoundsException { //-- check bounds for index if ((index < 0) || (index > _descriptionList.size())) { throw new IndexOutOfBoundsException(); } return (org.gridsphere.portletcontainer.impl.descriptor.Description) _descriptionList.get(index); } //-- org.gridsphere.portletcontainer.jsr.descriptor.Description getDescription(int) /** * Method getDescription */ public org.gridsphere.portletcontainer.impl.descriptor.Description[] getDescription() { int size = _descriptionList.size(); org.gridsphere.portletcontainer.impl.descriptor.Description[] mArray = new org.gridsphere.portletcontainer.impl.descriptor.Description[size]; for (int index = 0; index < size; index++) { mArray[index] = (org.gridsphere.portletcontainer.impl.descriptor.Description) _descriptionList.get(index); } return mArray; } //-- org.gridsphere.portletcontainer.jsr.descriptor.Description[] getDescription() /** * Method getDescriptionCount */ public int getDescriptionCount() { return _descriptionList.size(); } //-- int getDescriptionCount() /** * Returns the value of field 'id'. * * @return the value of field 'id'. */ public java.lang.String getId() { return this._id; } //-- java.lang.String getId() /** * Returns the value of field 'roleLink'. * * @return the value of field 'roleLink'. */ public org.gridsphere.portletcontainer.impl.descriptor.RoleLink getRoleLink() { return this._roleLink; } //-- org.gridsphere.portletcontainer.jsr.descriptor.RoleLink getRoleLink() /** * Returns the value of field 'roleName'. * * @return the value of field 'roleName'. */ public org.gridsphere.portletcontainer.impl.descriptor.RoleName getRoleName() { return this._roleName; } //-- org.gridsphere.portletcontainer.jsr.descriptor.RoleName getRoleName() /** * Method isValid */ public boolean isValid() { try { validate(); } catch (org.exolab.castor.xml.ValidationException vex) { return false; } return true; } //-- boolean isValid() /** * Method marshal * * @param out */ public void marshal(java.io.Writer out) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, out); } //-- void marshal(java.io.Writer) /** * Method marshal * * @param handler */ public void marshal(org.xml.sax.ContentHandler handler) throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { Marshaller.marshal(this, handler); } //-- void marshal(org.xml.sax.ContentHandler) /** * Method removeDescription * * @param vDescription */ public boolean removeDescription(org.gridsphere.portletcontainer.impl.descriptor.Description vDescription) { boolean removed = _descriptionList.remove(vDescription); return removed; } //-- boolean removeDescription(org.gridsphere.portletcontainer.jsr.descriptor.Description) /** * Method setDescription * * @param index * @param vDescription */ public void setDescription(int index, org.gridsphere.portletcontainer.impl.descriptor.Description vDescription) throws java.lang.IndexOutOfBoundsException { //-- check bounds for index if ((index < 0) || (index > _descriptionList.size())) { throw new IndexOutOfBoundsException(); } _descriptionList.set(index, vDescription); } //-- void setDescription(int, org.gridsphere.portletcontainer.jsr.descriptor.Description) /** * Method setDescription * * @param descriptionArray */ public void setDescription(org.gridsphere.portletcontainer.impl.descriptor.Description[] descriptionArray) { //-- copy array _descriptionList.clear(); for (int i = 0; i < descriptionArray.length; i++) { _descriptionList.add(descriptionArray[i]); } } //-- void setDescription(org.gridsphere.portletcontainer.jsr.descriptor.Description) /** * Sets the value of field 'id'. * * @param id the value of field 'id'. */ public void setId(java.lang.String id) { this._id = id; } //-- void setId(java.lang.String) /** * Sets the value of field 'roleLink'. * * @param roleLink the value of field 'roleLink'. */ public void setRoleLink(org.gridsphere.portletcontainer.impl.descriptor.RoleLink roleLink) { this._roleLink = roleLink; } //-- void setRoleLink(org.gridsphere.portletcontainer.jsr.descriptor.RoleLink) /** * Sets the value of field 'roleName'. * * @param roleName the value of field 'roleName'. */ public void setRoleName(org.gridsphere.portletcontainer.impl.descriptor.RoleName roleName) { this._roleName = roleName; } //-- void setRoleName(org.gridsphere.portletcontainer.jsr.descriptor.RoleName) /** * Method unmarshal * * @param reader */ public static java.lang.Object unmarshal(java.io.Reader reader) throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException { return (org.gridsphere.portletcontainer.impl.descriptor.SecurityRoleRefType) Unmarshaller.unmarshal(org.gridsphere.portletcontainer.impl.descriptor.SecurityRoleRefType.class, reader); } //-- java.lang.Object unmarshal(java.io.Reader) /** * Method validate */ public void validate() throws org.exolab.castor.xml.ValidationException { org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator(); validator.validate(this); } //-- void validate()}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -