KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws718 > Role


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.3, build R1)
4
// Generated source version: 1.1.3
5

6 package org.jboss.test.webservice.jbws718;
7
8
9 public class Role {
10     protected java.lang.String JavaDoc name;
11     protected java.lang.String JavaDoc description;
12     
13     public Role() {
14     }
15     
16     public Role(java.lang.String JavaDoc name, java.lang.String JavaDoc description) {
17         this.name = name;
18         this.description = description;
19     }
20     
21     public java.lang.String JavaDoc getName() {
22         return name;
23     }
24     
25     public void setName(java.lang.String JavaDoc name) {
26         this.name = name;
27     }
28     
29     public java.lang.String JavaDoc getDescription() {
30         return description;
31     }
32     
33     public void setDescription(java.lang.String JavaDoc description) {
34         this.description = description;
35     }
36 }
37
Popular Tags