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.api.bus.ServiceConfiguration; |
23 | |
import org.kuali.rice.ksb.api.registry.ServiceInfo; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | 0 | public class ServiceRegistryForm extends ActionForm { |
33 | |
|
34 | |
private static final long serialVersionUID = -6662210181549552182L; |
35 | |
|
36 | |
private String methodToCall; |
37 | 0 | private List<ServiceConfiguration> publishedServices = new ArrayList<ServiceConfiguration>(); |
38 | 0 | private List<ServiceInfo> globalRegistryServices = new ArrayList<ServiceInfo>(); |
39 | |
|
40 | |
private String myIpAddress; |
41 | |
private String myApplicationId; |
42 | |
private String myInstanceId; |
43 | |
private Boolean devMode; |
44 | |
private String removedApplicationId; |
45 | |
|
46 | |
public String getMethodToCall() { |
47 | 0 | return this.methodToCall; |
48 | |
} |
49 | |
public void setMethodToCall(String methodToCall) { |
50 | 0 | this.methodToCall = methodToCall; |
51 | 0 | } |
52 | |
public List<ServiceInfo> getGlobalRegistryServices() { |
53 | 0 | return this.globalRegistryServices; |
54 | |
} |
55 | |
public void setGlobalRegistryServices(List<ServiceInfo> globalRegistryServices) { |
56 | 0 | this.globalRegistryServices = globalRegistryServices; |
57 | 0 | } |
58 | |
public List<ServiceConfiguration> getPublishedServices() { |
59 | 0 | return this.publishedServices; |
60 | |
} |
61 | |
public void setPublishedServices(List<ServiceConfiguration> publishedServices) { |
62 | 0 | this.publishedServices = publishedServices; |
63 | 0 | } |
64 | |
public String getMyIpAddress() { |
65 | 0 | return this.myIpAddress; |
66 | |
} |
67 | |
public void setMyIpAddress(String myIpAddress) { |
68 | 0 | this.myIpAddress = myIpAddress; |
69 | 0 | } |
70 | |
public String getMyApplicationId() { |
71 | 0 | return this.myApplicationId; |
72 | |
} |
73 | |
public void setMyApplicationId(String myApplicationId) { |
74 | 0 | this.myApplicationId = myApplicationId; |
75 | 0 | } |
76 | |
public String getMyInstanceId() { |
77 | 0 | return this.myInstanceId; |
78 | |
} |
79 | |
public void setMyInstanceId(String myInstanceId) { |
80 | 0 | this.myInstanceId = myInstanceId; |
81 | 0 | } |
82 | |
public Boolean getDevMode() { |
83 | 0 | return this.devMode; |
84 | |
} |
85 | |
public void setDevMode(Boolean devMode) { |
86 | 0 | this.devMode = devMode; |
87 | 0 | } |
88 | |
public String getRemovedApplicationId() { |
89 | 0 | return this.removedApplicationId; |
90 | |
} |
91 | |
public void setRemovedApplicationId(String removedApplicationId) { |
92 | 0 | this.removedApplicationId = removedApplicationId; |
93 | 0 | } |
94 | |
|
95 | |
} |