1 23 24 package com.sun.enterprise.repository; 25 26 import javax.naming.RefAddr ; 27 28 36 37 public class SerializableObjectRefAddr extends RefAddr { 38 43 private Object contents; 44 52 public SerializableObjectRefAddr (String addrType, Object contents) { 53 super(addrType); 54 this.contents = contents; 55 } 56 57 62 public Object getContent() { 63 return contents; 64 } 65 } 66 | Popular Tags |