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 SummaryConstructors Constructor Description ContactRoleType()Default no-arg constructorContactRoleType(Object contact, String role, long id)Fully-initialising value constructor
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetContact()Gets the value of the contact property.longgetId()Gets the value of the id property.StringgetRole()Gets the value of the role property.voidsetContact(Object value)Sets the value of the contact property.voidsetId(long value)Sets the value of the id property.voidsetRole(String value)Sets the value of the role property.
 
- 
- 
- 
Method Detail- 
getContactpublic Object getContact() Gets the value of the contact property.- Returns:
- possible object is
     Object
 
 - 
setContactpublic void setContact(Object value) Sets the value of the contact property.- Parameters:
- value- allowed object is- Object
 
 - 
getRolepublic String getRole() Gets the value of the role property.- Returns:
- possible object is
     String
 
 - 
setRolepublic void setRole(String value) Sets the value of the role property.- Parameters:
- value- allowed object is- String
 
 - 
getIdpublic long getId() Gets the value of the id property.
 - 
setIdpublic void setId(long value) Sets the value of the id property.
 
- 
 
-