01: /**
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */package com.tc.config.schema.setup;
05:
06: import com.tc.exception.ImplementMe;
07: import com.terracottatech.config.Ha;
08: import com.terracottatech.config.Server;
09: import com.terracottatech.config.Servers;
10: import com.terracottatech.config.UpdateCheck;
11:
12: public class TestL2S extends TestXmlObject implements Servers {
13:
14: private Server[] servers;
15:
16: public TestL2S(Server[] servers) {
17: this .servers = servers;
18: }
19:
20: public TestL2S() {
21: this (null);
22: }
23:
24: public void setServers(Server[] servers) {
25: this .servers = servers;
26: }
27:
28: public Server[] getServerArray() {
29: return this .servers;
30: }
31:
32: public Server getServerArray(int arg0) {
33: return this .servers[arg0];
34: }
35:
36: public int sizeOfServerArray() {
37: return this .servers.length;
38: }
39:
40: public void setServerArray(Server[] arg0) {
41: throw new ImplementMe();
42: }
43:
44: public void setServerArray(int arg0, Server arg1) {
45: throw new ImplementMe();
46: }
47:
48: public Server insertNewServer(int arg0) {
49: throw new ImplementMe();
50: }
51:
52: public Server addNewServer() {
53: throw new ImplementMe();
54: }
55:
56: public void removeServer(int arg0) {
57: throw new ImplementMe();
58: }
59:
60: public Ha addNewHa() {
61: throw new ImplementMe();
62: }
63:
64: public Ha getHa() {
65: throw new ImplementMe();
66: }
67:
68: public boolean isSetHa() {
69: throw new ImplementMe();
70: }
71:
72: public void setHa(Ha arg0) {
73: throw new ImplementMe();
74: }
75:
76: public void unsetHa() {
77: throw new ImplementMe();
78: }
79:
80: public UpdateCheck addNewUpdateCheck() {
81: throw new ImplementMe();
82: }
83:
84: public UpdateCheck getUpdateCheck() {
85: throw new ImplementMe();
86: }
87:
88: public boolean isSetUpdateCheck() {
89: throw new ImplementMe();
90: }
91:
92: public void setUpdateCheck(UpdateCheck arg0) {
93: throw new ImplementMe();
94: }
95:
96: public void unsetUpdateCheck() {
97: throw new ImplementMe();
98: }
99: }
|