Package ejava.projects.eleague.dto
Class ContactRoleType
- java.lang.Object
-
- ejava.projects.eleague.dto.ContactRoleType
-
public class ContactRoleType extends Object
Java class for ContactRoleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ContactRoleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="contact" type="{http://www.w3.org/2001/XMLSchema}IDREF"/> <element name="role" type="{http://www.w3.org/2001/XMLSchema}NCName"/> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ContactRoleType()
Default no-arg constructorContactRoleType(Object contact, String role, long id)
Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getContact()
Gets the value of the contact property.long
getId()
Gets the value of the id property.String
getRole()
Gets the value of the role property.void
setContact(Object value)
Sets the value of the contact property.void
setId(long value)
Sets the value of the id property.void
setRole(String value)
Sets the value of the role property.
-
-
-
Method Detail
-
getContact
public Object getContact()
Gets the value of the contact property.- Returns:
- possible object is
Object
-
setContact
public void setContact(Object value)
Sets the value of the contact property.- Parameters:
value
- allowed object isObject
-
getRole
public String getRole()
Gets the value of the role property.- Returns:
- possible object is
String
-
setRole
public void setRole(String value)
Sets the value of the role property.- Parameters:
value
- allowed object isString
-
getId
public long getId()
Gets the value of the id property.
-
setId
public void setId(long value)
Sets the value of the id property.
-
-