1 22 package org.jboss.test.jbossmx.compliance.standard.support; 23 24 28 29 public interface TortureMBean 30 { 31 String getNiceString(); 32 void setNiceString(String nice); 33 34 boolean isNiceBoolean(); 35 void setNiceBoolean(boolean nice); 36 37 void setInt(int foo); 38 void setIntArray(int[] foo); 39 void setNestedIntArray(int[][][] foo); 40 41 void setInteger(Integer foo); 42 void setIntegerArray(Integer [] foo); 43 void setNestedIntegerArray(Integer [][][] foo); 44 45 int getMyinteger(); 46 int[] getMyintegerArray(); 47 int[][][] getMyNestedintegerArray(); 48 49 Integer getMyInteger(); 50 Integer [] getMyIntegerArray(); 51 Integer [][][] getMyNestedIntegerArray(); 52 53 boolean isready(); 55 56 Boolean isReady(); 58 59 boolean ispeachy(int peachy); 61 Boolean isPeachy(int peachy); 62 String issuer(); 63 int settlement(String thing); 64 void setMulti(String foo, Integer bar); 65 String getResult(String source); 66 void setNothing(); 67 void getNothing(); 68 69 void setSomething(String something); 72 void getSomething(); 73 74 String [][] doSomethingCrazy(Object [] args, String [] foo, int[][][] goMental); 76 } 77 | Popular Tags |