KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mvnforum > jaxb > db > GroupType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2005.12.17 at 09:43:27 AM GMT+07:00
6
//
7

8
9 package com.mvnforum.jaxb.db;
10
11
12 /**
13  * Java content class for GroupType complex type.
14  * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/D:/working/mvnforum/contrib/phpbb2mvnforum-jaxb/schema/mvnforum.xsd line 40)
15  * <p>
16  * <pre>
17  * &lt;complexType name="GroupType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="GroupOwnerName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="GroupName" type="{http://www.w3.org/2001/XMLSchema}string"/>
23  * &lt;element name="GroupDesc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="GroupOption" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
25  * &lt;element name="GroupCreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="GroupModifiedDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * &lt;element name="GlobalPermissionList" type="{}GlobalPermissionList" minOccurs="0"/>
28  * &lt;element name="GroupMemberList" type="{}GroupMemberList" minOccurs="0"/>
29  * &lt;/sequence>
30  * &lt;/restriction>
31  * &lt;/complexContent>
32  * &lt;/complexType>
33  * </pre>
34  *
35  */

36 public interface GroupType {
37
38
39     /**
40      * Gets the value of the groupOwnerName property.
41      *
42      * @return
43      * possible object is
44      * {@link java.lang.String}
45      */

46     java.lang.String JavaDoc getGroupOwnerName();
47
48     /**
49      * Sets the value of the groupOwnerName property.
50      *
51      * @param value
52      * allowed object is
53      * {@link java.lang.String}
54      */

55     void setGroupOwnerName(java.lang.String JavaDoc value);
56
57     /**
58      * Gets the value of the groupCreationDate property.
59      *
60      * @return
61      * possible object is
62      * {@link java.lang.String}
63      */

64     java.lang.String JavaDoc getGroupCreationDate();
65
66     /**
67      * Sets the value of the groupCreationDate property.
68      *
69      * @param value
70      * allowed object is
71      * {@link java.lang.String}
72      */

73     void setGroupCreationDate(java.lang.String JavaDoc value);
74
75     /**
76      * Gets the value of the groupName property.
77      *
78      * @return
79      * possible object is
80      * {@link java.lang.String}
81      */

82     java.lang.String JavaDoc getGroupName();
83
84     /**
85      * Sets the value of the groupName property.
86      *
87      * @param value
88      * allowed object is
89      * {@link java.lang.String}
90      */

91     void setGroupName(java.lang.String JavaDoc value);
92
93     /**
94      * Gets the value of the groupMemberList property.
95      *
96      * @return
97      * possible object is
98      * {@link com.mvnforum.jaxb.db.GroupMemberList}
99      */

100     com.mvnforum.jaxb.db.GroupMemberList getGroupMemberList();
101
102     /**
103      * Sets the value of the groupMemberList property.
104      *
105      * @param value
106      * allowed object is
107      * {@link com.mvnforum.jaxb.db.GroupMemberList}
108      */

109     void setGroupMemberList(com.mvnforum.jaxb.db.GroupMemberList value);
110
111     /**
112      * Gets the value of the groupModifiedDate property.
113      *
114      * @return
115      * possible object is
116      * {@link java.lang.String}
117      */

118     java.lang.String JavaDoc getGroupModifiedDate();
119
120     /**
121      * Sets the value of the groupModifiedDate property.
122      *
123      * @param value
124      * allowed object is
125      * {@link java.lang.String}
126      */

127     void setGroupModifiedDate(java.lang.String JavaDoc value);
128
129     /**
130      * Gets the value of the groupOption property.
131      *
132      */

133     int getGroupOption();
134
135     /**
136      * Sets the value of the groupOption property.
137      *
138      */

139     void setGroupOption(int value);
140
141     /**
142      * Gets the value of the globalPermissionList property.
143      *
144      * @return
145      * possible object is
146      * {@link com.mvnforum.jaxb.db.GlobalPermissionList}
147      */

148     com.mvnforum.jaxb.db.GlobalPermissionList getGlobalPermissionList();
149
150     /**
151      * Sets the value of the globalPermissionList property.
152      *
153      * @param value
154      * allowed object is
155      * {@link com.mvnforum.jaxb.db.GlobalPermissionList}
156      */

157     void setGlobalPermissionList(com.mvnforum.jaxb.db.GlobalPermissionList value);
158
159     /**
160      * Gets the value of the groupDesc property.
161      *
162      * @return
163      * possible object is
164      * {@link java.lang.String}
165      */

166     java.lang.String JavaDoc getGroupDesc();
167
168     /**
169      * Sets the value of the groupDesc property.
170      *
171      * @param value
172      * allowed object is
173      * {@link java.lang.String}
174      */

175     void setGroupDesc(java.lang.String JavaDoc value);
176
177 }
178
Popular Tags