1 22 package org.jboss.test.aop.basic; 23 24 import java.io.NotSerializableException ; 25 26 30 public class NonadvisedPOJO 31 { 32 33 public NonadvisedPOJO() 34 { 35 } 36 37 public NonadvisedPOJO(String s) 38 { 39 remoteValue = s; 40 } 41 42 public NonadvisedPOJO(int i) throws NotSerializableException , SomeException 43 { 44 45 } 46 47 private String remoteValue; 48 49 public String remoteTest() 50 { 51 return remoteValue; 52 } 53 54 public String withException(String s, int i)throws ClassCastException , SomeException 55 { 56 return s; 57 } 58 } 59 60 | Popular Tags |