KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > samples > bidbuy > Service


1 package samples.bidbuy ;
2
3 public class Service implements java.io.Serializable JavaDoc {
4     private String JavaDoc ServiceName;
5     private String JavaDoc ServiceUrl;
6     private String JavaDoc ServiceType;
7     private String JavaDoc ServiceWsdl;
8
9     public String JavaDoc getServiceName() {
10        return ServiceName;
11     }
12
13     public void setServiceName(String JavaDoc value) {
14        ServiceName = value;
15     }
16
17     public String JavaDoc getServiceUrl() {
18        return ServiceUrl;
19     }
20
21     public void setServiceUrl(String JavaDoc value) {
22        ServiceUrl = value;
23     }
24
25     public String JavaDoc getServiceType() {
26        return ServiceType;
27     }
28
29     public void setServiceType(String JavaDoc value) {
30        ServiceType = value;
31     }
32
33     public String JavaDoc getServiceWsdl() {
34        return ServiceWsdl;
35     }
36
37     public void setServiceWsdl(String JavaDoc value) {
38        ServiceWsdl = value;
39     }
40 }
41
Popular Tags