1 16 17 package test.wsdl.roundtrip.holders; 18 19 import test.wsdl.roundtrip.BondInvestment; 20 21 import javax.xml.rpc.holders.Holder ; 22 23 public final class BondInvestmentHolder implements Holder { 24 25 26 public BondInvestment value; 27 28 31 public BondInvestmentHolder() {} 32 33 38 public BondInvestmentHolder(BondInvestment value) { 39 this.value = value; 40 } 41 } 42 | Popular Tags |