//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2003.03.06 at 09:44:44 PST
//
package org.jaffa.security.securityrolesdomain;
/**
* Java content class for role complex type.
* <p>The following schema fragment specifies the expected content contained within this java content object.
* <p>
* <pre>
* <complexType name="role">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="include" type="{}include" maxOccurs="unbounded" minOccurs="0"/>
* <element name="exclude" type="{}exclude" maxOccurs="unbounded" minOccurs="0"/>
* <element name="grant-function-access" type="{}grant-function-access" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*/
public interface Role {
java.util.List getExclude();
java.lang.String getDescription();
void setDescription(java.lang.String value);
java.util.List getGrantFunctionAccess();
java.lang.String getName();
void setName(java.lang.String value);
java.util.List getInclude();
}
|