1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.ksb.messaging.web; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import org.apache.struts.action.ActionForm; |
22 | |
import org.kuali.rice.ksb.messaging.ServiceInfo; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | 0 | public class ServiceRegistryForm extends ActionForm { |
32 | |
|
33 | |
private String methodToCall; |
34 | 0 | private List<ServiceInfo> publishedServices = new ArrayList<ServiceInfo>(); |
35 | 0 | private List<ServiceInfo> publishedTempServices = new ArrayList<ServiceInfo>(); |
36 | 0 | private List<ServiceInfo> globalRegistryServices = new ArrayList<ServiceInfo>(); |
37 | |
|
38 | |
private String myIpAddress; |
39 | |
private String myServiceNamespace; |
40 | |
private Boolean devMode; |
41 | |
|
42 | |
public String getMethodToCall() { |
43 | 0 | return this.methodToCall; |
44 | |
} |
45 | |
public void setMethodToCall(String methodToCall) { |
46 | 0 | this.methodToCall = methodToCall; |
47 | 0 | } |
48 | |
public List<ServiceInfo> getGlobalRegistryServices() { |
49 | 0 | return this.globalRegistryServices; |
50 | |
} |
51 | |
public void setGlobalRegistryServices(List<ServiceInfo> globalRegistryServices) { |
52 | 0 | this.globalRegistryServices = globalRegistryServices; |
53 | 0 | } |
54 | |
public List<ServiceInfo> getPublishedServices() { |
55 | 0 | return this.publishedServices; |
56 | |
} |
57 | |
public void setPublishedServices(List<ServiceInfo> publishedServices) { |
58 | 0 | this.publishedServices = publishedServices; |
59 | 0 | } |
60 | |
public List<ServiceInfo> getPublishedTempServices() { |
61 | 0 | return this.publishedTempServices; |
62 | |
} |
63 | |
public void setPublishedTempServices(List<ServiceInfo> publishedTempServices) { |
64 | 0 | this.publishedTempServices = publishedTempServices; |
65 | 0 | } |
66 | |
public String getMyIpAddress() { |
67 | 0 | return this.myIpAddress; |
68 | |
} |
69 | |
public void setMyIpAddress(String myIpAddress) { |
70 | 0 | this.myIpAddress = myIpAddress; |
71 | 0 | } |
72 | |
public String getMyServiceNamespace() { |
73 | 0 | return this.myServiceNamespace; |
74 | |
} |
75 | |
public void setMyServiceNamespace(String myServiceNamespace) { |
76 | 0 | this.myServiceNamespace = myServiceNamespace; |
77 | 0 | } |
78 | |
public Boolean getDevMode() { |
79 | 0 | return this.devMode; |
80 | |
} |
81 | |
public void setDevMode(Boolean devMode) { |
82 | 0 | this.devMode = devMode; |
83 | 0 | } |
84 | |
|
85 | |
} |