01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2003.03.06 at 09:44:44 PST
06: //
07:
08: package org.jaffa.security.securityrolesdomain;
09:
10: /**
11: * Java content class for role complex type.
12: * <p>The following schema fragment specifies the expected content contained within this java content object.
13: * <p>
14: * <pre>
15: * <complexType name="role">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
20: * <element name="include" type="{}include" maxOccurs="unbounded" minOccurs="0"/>
21: * <element name="exclude" type="{}exclude" maxOccurs="unbounded" minOccurs="0"/>
22: * <element name="grant-function-access" type="{}grant-function-access" maxOccurs="unbounded" minOccurs="0"/>
23: * </sequence>
24: * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
25: * </restriction>
26: * </complexContent>
27: * </complexType>
28: * </pre>
29: *
30: */
31: public interface Role {
32:
33: java.util.List getExclude();
34:
35: java.lang.String getDescription();
36:
37: void setDescription(java.lang.String value);
38:
39: java.util.List getGrantFunctionAccess();
40:
41: java.lang.String getName();
42:
43: void setName(java.lang.String value);
44:
45: java.util.List getInclude();
46:
47: }
|