//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.5-b16-fcs
// 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: 2005.12.17 at 09:43:27 AM GMT+07:00
//
package com.mvnforum.jaxb.db;
/**
* Java content class for MemberForumPermissionType complex type.
* <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 148)
* <p>
* <pre>
* <complexType name="MemberForumPermissionType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MemberName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ForumPermission" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*/
public interface MemberForumPermissionType {
/**
* Gets the value of the memberName property.
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getMemberName();
/**
* Sets the value of the memberName property.
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setMemberName(java.lang.String value);
/**
* Gets the value of the forumPermission property.
*
*/
int getForumPermission();
/**
* Sets the value of the forumPermission property.
*
*/
void setForumPermission(int value);
}
|