KickJava   Java API By Example, From Geeks To Geeks.

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


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 GetRolePropertiesResponse {
10     protected org.jboss.test.webservice.jbws718.ArrayOfTask tasks;
11     protected java.lang.String JavaDoc description;
12     
13     public GetRolePropertiesResponse() {
14     }
15     
16     public GetRolePropertiesResponse(org.jboss.test.webservice.jbws718.ArrayOfTask tasks, java.lang.String JavaDoc description) {
17         this.tasks = tasks;
18         this.description = description;
19     }
20     
21     public org.jboss.test.webservice.jbws718.ArrayOfTask getTasks() {
22         return tasks;
23     }
24     
25     public void setTasks(org.jboss.test.webservice.jbws718.ArrayOfTask tasks) {
26         this.tasks = tasks;
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