KickJava   Java API By Example, From Geeks To Geeks.

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


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 GetPoliciesResponse {
10     protected org.jboss.test.webservice.jbws718.ArrayOfPolicy policies;
11     protected boolean inheritParent;
12     
13     public GetPoliciesResponse() {
14     }
15     
16     public GetPoliciesResponse(org.jboss.test.webservice.jbws718.ArrayOfPolicy policies, boolean inheritParent) {
17         this.policies = policies;
18         this.inheritParent = inheritParent;
19     }
20     
21     public org.jboss.test.webservice.jbws718.ArrayOfPolicy getPolicies() {
22         return policies;
23     }
24     
25     public void setPolicies(org.jboss.test.webservice.jbws718.ArrayOfPolicy policies) {
26         this.policies = policies;
27     }
28     
29     public boolean isInheritParent() {
30         return inheritParent;
31     }
32     
33     public void setInheritParent(boolean inheritParent) {
34         this.inheritParent = inheritParent;
35     }
36 }
37
Popular Tags