001: /**
002: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
003: * notice. All rights reserved.
004: */package com.tc.config.schema;
005:
006: import org.apache.xmlbeans.XmlBoolean;
007:
008: import com.terracottatech.config.ConfigurationModel;
009: import com.terracottatech.config.License;
010: import com.terracottatech.config.System;
011: import com.terracottatech.config.ConfigurationModel.Enum;
012:
013: /**
014: * A mock {@link System}, for use in tests.
015: */
016: public class MockSystem extends MockXmlObject implements System {
017:
018: public MockSystem() {
019: super ();
020: }
021:
022: public boolean isSetDsoEnabled() {
023: return false;
024: }
025:
026: public boolean isSetJdbcEnabled() {
027: return false;
028: }
029:
030: public boolean isSetHttpEnabled() {
031: return false;
032: }
033:
034: public boolean isSetJmxEnabled() {
035: return false;
036: }
037:
038: public boolean isSetJmxHttpEnabled() {
039: return false;
040: }
041:
042: public void unsetDsoEnabled() {
043: // nothing here
044: }
045:
046: public void unsetJdbcEnabled() {
047: // nothing here
048: }
049:
050: public void unsetHttpEnabled() {
051: // nothing here
052: }
053:
054: public void unsetJmxEnabled() {
055: // nothing here
056: }
057:
058: public void unsetJmxHttpEnabled() {
059: // nothing here
060: }
061:
062: public boolean getJdbcEnabled() {
063: return false;
064: }
065:
066: public XmlBoolean xgetJdbcEnabled() {
067: return null;
068: }
069:
070: public void setJdbcEnabled(boolean arg0) {
071: // nothing here
072: }
073:
074: public void xsetJdbcEnabled(XmlBoolean arg0) {
075: // nothing here
076: }
077:
078: public boolean getDsoEnabled() {
079: return false;
080: }
081:
082: public XmlBoolean xgetDsoEnabled() {
083: return null;
084: }
085:
086: public void setDsoEnabled(boolean arg0) {
087: // nothing here
088: }
089:
090: public void xsetDsoEnabled(XmlBoolean arg0) {
091: // nothing here
092: }
093:
094: public License getLicense() {
095: return null;
096: }
097:
098: public boolean isSetLicense() {
099: return false;
100: }
101:
102: public void setLicense(License arg0) {
103: // nothing here
104: }
105:
106: public License addNewLicense() {
107: return null;
108: }
109:
110: public void unsetLicense() {
111: // nothing here
112: }
113:
114: public Enum getConfigurationModel() {
115: return null;
116: }
117:
118: public ConfigurationModel xgetConfigurationModel() {
119: return null;
120: }
121:
122: public boolean isSetConfigurationModel() {
123: return false;
124: }
125:
126: public void setConfigurationModel(Enum arg0) {
127: // nothing here
128: }
129:
130: public void xsetConfigurationModel(ConfigurationModel arg0) {
131: // nothing here
132: }
133:
134: public void unsetConfigurationModel() {
135: // nothing here
136: }
137:
138: public boolean getHttpEnabled() {
139: return false;
140: }
141:
142: public boolean getJmxEnabled() {
143: return false;
144: }
145:
146: public boolean getJmxHttpEnabled() {
147: return false;
148: }
149:
150: public void setHttpEnabled(boolean arg0) {
151: // nothing here
152: }
153:
154: public void setJmxEnabled(boolean arg0) {
155: // nothing here
156: }
157:
158: public void setJmxHttpEnabled(boolean arg0) {
159: // nothing here
160: }
161:
162: public XmlBoolean xgetHttpEnabled() {
163: return null;
164: }
165:
166: public XmlBoolean xgetJmxEnabled() {
167: return null;
168: }
169:
170: public XmlBoolean xgetJmxHttpEnabled() {
171: return null;
172: }
173:
174: public void xsetHttpEnabled(XmlBoolean arg0) {
175: // nothing here
176: }
177:
178: public void xsetJmxEnabled(XmlBoolean arg0) {
179: // nothing here
180: }
181:
182: public void xsetJmxHttpEnabled(XmlBoolean arg0) {
183: // nothing here
184: }
185:
186: }
|