1 25 26 package org.objectweb.easybeans.tests.enhancer.interceptors.business.bean; 27 28 29 33 public interface StatelessLocalItf { 34 35 39 44 boolean getBoolean(final boolean b); 45 46 51 boolean[] getBooleans(final boolean[] booleans); 52 53 57 62 byte getByte(final byte i); 63 64 69 byte[] getBytes(final byte[] bytes); 70 71 75 76 81 char getChar(final char c); 82 83 88 char[] getChars(final char[] chars); 89 90 94 95 100 double getDouble(final double d); 101 102 107 double[] getDoubles(final double[] doubles); 108 109 113 114 119 float getFloat(final float f); 120 121 126 float[] getFloats(final float[] floats); 127 128 132 133 138 int getInt(final int i); 139 140 146 int addInt(final int i, final int j); 147 148 153 int[] getInts(final int[] ints); 154 155 156 160 165 long getLong(final long l); 166 167 172 long[] getLongs(final long[] longs); 173 174 178 179 184 short getShort(final short s); 185 186 191 short[] getShorts(final short[] shorts); 192 193 194 198 199 211 Object [] getPrimitive(final boolean flag, final byte b, final char c, final double d, final float f, final int i, 212 final long l, final Object o); 213 214 215 219 220 224 void someCustomizedExceptions() throws TestException; 225 226 232 void someCustomizedExceptions2(final int value) throws TestException, TestException2; 233 234 239 void someCustomizedExceptions3(final int value) throws Exception ; 240 241 244 void throwExceptionByInterceptor(); 245 246 247 252 int valueDoubledByInterceptor(int i); 253 254 257 void singleMethodIntercepted(); 258 259 262 void excludedInterceptorsMethod(); 263 264 269 void sameMethodName(int i); 270 271 276 void sameMethodName(double d); 277 278 279 } 280 | Popular Tags |