org.hudsonci.rest.model
Class UserDTO

java.lang.Object
  extended by org.hudsonci.rest.model.UserDTO

public class UserDTO
extends Object

Java class for user complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="user">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String description
           
protected  String fullName
           
protected  String id
           
 
Constructor Summary
UserDTO()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getDescription()
          Gets the value of the description property.
 String getFullName()
          Gets the value of the fullName property.
 String getId()
          Gets the value of the id property.
 int hashCode()
           
 void setDescription(String value)
          Sets the value of the description property.
 void setFullName(String value)
          Sets the value of the fullName property.
 void setId(String value)
          Sets the value of the id property.
 UserDTO withDescription(String value)
           
 UserDTO withFullName(String value)
           
 UserDTO withId(String value)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

protected String id

fullName

protected String fullName

description

protected String description
Constructor Detail

UserDTO

public UserDTO()
Method Detail

getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getFullName

public String getFullName()
Gets the value of the fullName property.

Returns:
possible object is String

setFullName

public void setFullName(String value)
Sets the value of the fullName property.

Parameters:
value - allowed object is String

getDescription

public String getDescription()
Gets the value of the description property.

Returns:
possible object is String

setDescription

public void setDescription(String value)
Sets the value of the description property.

Parameters:
value - allowed object is String

withId

public UserDTO withId(String value)

withFullName

public UserDTO withFullName(String value)

withDescription

public UserDTO withDescription(String value)

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object


Copyright © 2004-2011 Hudson. All Rights Reserved.