1 5 package com.tc.config.schema.setup; 6 7 import com.tc.exception.ImplementMe; 8 import com.terracottatech.config.Authentication; 9 import com.terracottatech.config.DsoServerData; 10 import com.terracottatech.config.Host; 11 import com.terracottatech.config.NonBlankToken; 12 import com.terracottatech.config.Path; 13 import com.terracottatech.config.Port; 14 import com.terracottatech.config.Server; 15 16 public class TestL2 extends TestXmlObject implements Server { 17 18 public TestL2() { 19 super(); 20 } 21 22 public DsoServerData addNewDso() { 23 throw new ImplementMe(); 24 } 25 26 public String getData() { 27 throw new ImplementMe(); 28 } 29 30 public DsoServerData getDso() { 31 throw new ImplementMe(); 32 } 33 34 public int getDsoPort() { 35 throw new ImplementMe(); 36 } 37 38 public int getJdbcPort() { 39 throw new ImplementMe(); 40 } 41 42 public String getName() { 43 throw new ImplementMe(); 44 } 45 46 public void setName(String arg0) { 47 throw new ImplementMe(); 48 } 49 50 public boolean isSetName() { 51 throw new ImplementMe(); 52 } 53 54 public void unsetName() { 55 throw new ImplementMe(); 56 } 57 58 public NonBlankToken xgetName() { 59 throw new ImplementMe(); 60 } 61 62 public void xsetName(NonBlankToken arg0) { 63 throw new ImplementMe(); 64 } 65 66 public String getHost() { 67 throw new ImplementMe(); 68 } 69 70 public int getJmxPort() { 71 throw new ImplementMe(); 72 } 73 74 public String getLogs() { 75 throw new ImplementMe(); 76 } 77 78 public boolean isSetData() { 79 throw new ImplementMe(); 80 } 81 82 public boolean isSetDso() { 83 throw new ImplementMe(); 84 } 85 86 public boolean isSetDsoPort() { 87 throw new ImplementMe(); 88 } 89 90 public boolean isSetJdbcPort() { 91 throw new ImplementMe(); 92 } 93 94 public boolean isSetHttpPort() { 95 throw new ImplementMe(); 96 } 97 98 public boolean isSetJmxHttpPort() { 99 throw new ImplementMe(); 100 } 101 102 public boolean isSetJmxPort() { 103 throw new ImplementMe(); 104 } 105 106 public boolean isSetLogs() { 107 throw new ImplementMe(); 108 } 109 110 public void setData(String arg0) { 111 throw new ImplementMe(); 112 } 113 114 public void setDso(DsoServerData arg0) { 115 throw new ImplementMe(); 116 } 117 118 public void setJdbcPort(int arg0) { 119 throw new ImplementMe(); 120 } 121 122 public void setDsoPort(int arg0) { 123 throw new ImplementMe(); 124 } 125 126 public void setHost(String arg0) { 127 throw new ImplementMe(); 128 } 129 130 public void setHttpPort(int arg0) { 131 throw new ImplementMe(); 132 } 133 134 public void setJmxHttpPort(int arg0) { 135 throw new ImplementMe(); 136 } 137 138 public void setJmxPort(int arg0) { 139 throw new ImplementMe(); 140 } 141 142 public void setLogs(String arg0) { 143 throw new ImplementMe(); 144 } 145 146 public void unsetData() { 147 throw new ImplementMe(); 148 } 149 150 public void unsetDso() { 151 throw new ImplementMe(); 152 } 153 154 public void unsetJdbcPort() { 155 throw new ImplementMe(); 156 } 157 158 public void unsetDsoPort() { 159 throw new ImplementMe(); 160 } 161 162 public void unsetHttpPort() { 163 throw new ImplementMe(); 164 } 165 166 public void unsetJmxHttpPort() { 167 throw new ImplementMe(); 168 } 169 170 public void unsetJmxPort() { 171 throw new ImplementMe(); 172 } 173 174 public void unsetLogs() { 175 throw new ImplementMe(); 176 } 177 178 public Path xgetData() { 179 throw new ImplementMe(); 180 } 181 182 public Port xgetJdbcPort() { 183 throw new ImplementMe(); 184 } 185 186 public Port xgetDsoPort() { 187 throw new ImplementMe(); 188 } 189 190 public Host xgetHost() { 191 throw new ImplementMe(); 192 } 193 194 public Port xgetJmxPort() { 195 throw new ImplementMe(); 196 } 197 198 public Path xgetLogs() { 199 throw new ImplementMe(); 200 } 201 202 public void xsetData(Path arg0) { 203 throw new ImplementMe(); 204 } 205 206 public void xsetJdbcPort(Port arg0) { 207 throw new ImplementMe(); 208 } 209 210 public void xsetDsoPort(Port arg0) { 211 throw new ImplementMe(); 212 } 213 214 public void xsetHost(Host arg0) { 215 throw new ImplementMe(); 216 } 217 218 public void xsetHttpPort(Port arg0) { 219 throw new ImplementMe(); 220 } 221 222 public void xsetJmxHttpPort(Port arg0) { 223 throw new ImplementMe(); 224 } 225 226 public void xsetJmxPort(Port arg0) { 227 throw new ImplementMe(); 228 } 229 230 public void xsetLogs(Path arg0) { 231 throw new ImplementMe(); 232 } 233 234 public Authentication addNewAuthentication() { 235 throw new ImplementMe(); 236 } 237 238 public Authentication getAuthentication() { 239 throw new ImplementMe(); 240 } 241 242 public boolean isSetAuthentication() { 243 throw new ImplementMe(); 244 } 245 246 public void setAuthentication(Authentication arg0) { 247 throw new ImplementMe(); 248 } 249 250 public void unsetAuthentication() { 251 throw new ImplementMe(); 252 } 253 254 public boolean isSetHost() { 255 throw new ImplementMe(); 256 } 257 258 public void unsetHost() { 259 throw new ImplementMe(); 260 } 261 262 } 263 | Popular Tags |