KickJava   Java API By Example, From Geeks To Geeks.

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


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 GroupMemberType 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 65)
15  * <p>
16  * <pre>
17  * &lt;complexType name="GroupMemberType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="MemberName" type="{http://www.w3.org/2001/XMLSchema}string"/>
22  * &lt;element name="Privilege" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
23  * &lt;element name="CreationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="ModifiedDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;/sequence>
26  * &lt;/restriction>
27  * &lt;/complexContent>
28  * &lt;/complexType>
29  * </pre>
30  *
31  */

32 public interface GroupMemberType {
33
34
35     /**
36      * Gets the value of the creationDate property.
37      *
38      * @return
39      * possible object is
40      * {@link java.lang.String}
41      */

42     java.lang.String JavaDoc getCreationDate();
43
44     /**
45      * Sets the value of the creationDate property.
46      *
47      * @param value
48      * allowed object is
49      * {@link java.lang.String}
50      */

51     void setCreationDate(java.lang.String JavaDoc value);
52
53     /**
54      * Gets the value of the modifiedDate property.
55      *
56      * @return
57      * possible object is
58      * {@link java.lang.String}
59      */

60     java.lang.String JavaDoc getModifiedDate();
61
62     /**
63      * Sets the value of the modifiedDate property.
64      *
65      * @param value
66      * allowed object is
67      * {@link java.lang.String}
68      */

69     void setModifiedDate(java.lang.String JavaDoc value);
70
71     /**
72      * Gets the value of the memberName property.
73      *
74      * @return
75      * possible object is
76      * {@link java.lang.String}
77      */

78     java.lang.String JavaDoc getMemberName();
79
80     /**
81      * Sets the value of the memberName property.
82      *
83      * @param value
84      * allowed object is
85      * {@link java.lang.String}
86      */

87     void setMemberName(java.lang.String JavaDoc value);
88
89     /**
90      * Gets the value of the privilege property.
91      *
92      */

93     int getPrivilege();
94
95     /**
96      * Sets the value of the privilege property.
97      *
98      */

99     void setPrivilege(int value);
100
101 }
102
Popular Tags