org.apache.cxf.systest.jaxrs.codegen.jibx
Class Book

java.lang.Object
  extended by org.apache.cxf.systest.jaxrs.codegen.jibx.Book

public class Book
extends Object

Schema fragment(s) for this class:

 <xs:complexType xmlns:ns="http://books/types" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="book">
   <xs:sequence>
     <xs:element type="xs:string" name="name"/>
     <xs:element type="xs:long" name="id"/>
   </xs:sequence>
 </xs:complexType>
 


Constructor Summary
Book()
           
 
Method Summary
 long getId()
          Get the 'id' element value.
 String getName()
          Get the 'name' element value.
 void setId(long id)
          Set the 'id' element value.
 void setName(String name)
          Set the 'name' element value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Book

public Book()
Method Detail

getName

public String getName()
Get the 'name' element value.

Returns:
value

setName

public void setName(String name)
Set the 'name' element value.

Parameters:
name -

getId

public long getId()
Get the 'id' element value.

Returns:
value

setId

public void setId(long id)
Set the 'id' element value.

Parameters:
id -


Apache CXF