01: /*
02: * Copyright (c) 2006, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.wso2.esb.services.tos;
18:
19: /*
20: *
21: */
22:
23: public class ProxyData {
24: private String name;
25: private String target;
26: private boolean running;
27: private boolean enableStatistics;
28: private boolean enableTracing;
29: private boolean wsdlAvailabel;
30: private boolean policyAvailabel;
31:
32: public boolean isWsdlAvailabel() {
33: return wsdlAvailabel;
34: }
35:
36: public void setWsdlAvailabel(boolean wsdlAvailabel) {
37: this .wsdlAvailabel = wsdlAvailabel;
38: }
39:
40: public boolean isPolicyAvailabel() {
41: return policyAvailabel;
42: }
43:
44: public void setPolicyAvailabel(boolean policyAvailabel) {
45: this .policyAvailabel = policyAvailabel;
46: }
47:
48: public boolean isEnableTracing() {
49: return enableTracing;
50: }
51:
52: public void setEnableTracing(boolean enableTracing) {
53: this .enableTracing = enableTracing;
54: }
55:
56: public boolean isEnableStatistics() {
57: return enableStatistics;
58: }
59:
60: public void setEnableStatistics(boolean enableStatistics) {
61: this .enableStatistics = enableStatistics;
62: }
63:
64: public boolean isRunning() {
65: return running;
66: }
67:
68: public void setRunning(boolean running) {
69: this .running = running;
70: }
71:
72: public String getName() {
73: return name;
74: }
75:
76: public void setName(String name) {
77: this .name = name;
78: }
79:
80: public String getTarget() {
81: return target;
82: }
83:
84: public void setTarget(String target) {
85: this.target = target;
86: }
87:
88: }
|