01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package test.compliance.standard.support;
23:
24: /**
25: * @author <a href="mailto:trevor@protocool.com">Trevor Squires</a>.
26: */
27:
28: public interface TortureMBean {
29: String getNiceString();
30:
31: void setNiceString(String nice);
32:
33: boolean isNiceBoolean();
34:
35: void setNiceBoolean(boolean nice);
36:
37: void setInt(int foo);
38:
39: void setIntArray(int[] foo);
40:
41: void setNestedIntArray(int[][][] foo);
42:
43: void setInteger(Integer foo);
44:
45: void setIntegerArray(Integer[] foo);
46:
47: void setNestedIntegerArray(Integer[][][] foo);
48:
49: int getMyinteger();
50:
51: int[] getMyintegerArray();
52:
53: int[][][] getMyNestedintegerArray();
54:
55: Integer getMyInteger();
56:
57: Integer[] getMyIntegerArray();
58:
59: Integer[][][] getMyNestedIntegerArray();
60:
61: // these should give an isIs right?
62: boolean isready();
63:
64: Boolean isReady();
65:
66: // these should be operations
67: boolean ispeachy(int peachy);
68:
69: Boolean isPeachy(int peachy);
70:
71: String issuer();
72:
73: int settlement(String thing);
74:
75: void setMulti(String foo, Integer bar);
76:
77: String getResult(String source);
78:
79: void setNothing();
80:
81: void getNothing();
82:
83: // ok, we have an attribute called Something
84: // and an operation called getSomething...
85: void setSomething(String something);
86:
87: void getSomething();
88:
89: // ooh yesssss
90: String[][] doSomethingCrazy(Object[] args, String[] foo,
91: int[][][] goMental);
92: }
|