On Wed, Oct 19, 2011 at 5:45 AM, Willis C White <whiw...@us.ibm.com> wrote:

> implements java.io.Serializable {
>
>     private String FirstName;
>     private String LastName;
>     private String Longatude;
>     private String Latitude;
>     private Integer ID;
>     private String Description;
>
>
>     public person() {
>     }
>
>     public void setFirstName(String firstName) {
>         this.FirstName = firstName;
>     }
>
>     public String getFirstName() {
>         return this.FirstName;
>     }
>
>     public String getLastName() {
>         return this.LastName;
>     }
>     public void setLastName(String lastName) {
>         this.LastName = lastName;
>     }
>     public String getLongatude() {
>         return this.Longatude;
>     }
>     public void setLongatude(String longatude) {
>         this.Longatude = longatude;
>     }
>     public String getLatitude() {
>         return this.Latitude;
>     }
>     public void setLatitude(String latitude) {
>         this.Latitude = latitude;
>     }
>     public Integer getID() {
>         return this.ID;
>     }
>     public void setID(Integer id) {
>         this.ID = id;
>     }
>     public String getDescription() {
>         return this.Description;
>     }
>     public void setDescription(String description) {
>         this.Description = description;
>     }
>
> }


Ok, I guess it's really easy with access to the code, please find a working
example at
https://svn.apache.org/repos/asf/tuscany/sandbox/lresende/sca-2.x/samples/person-jsonrpc/

-- 
Luciano Resende
http://people.apache.org/~lresende
http://twitter.com/lresende1975
http://lresende.blogspot.com/

Reply via email to