FileDocCategorySizeDatePackage
SerializableObjectRefAddr.javaAPI DocGlassfish v2 API2951Fri May 04 22:35:10 BST 2007com.sun.enterprise.repository

SerializableObjectRefAddr

public class SerializableObjectRefAddr extends RefAddr
author
Qingqing Ouyang
see
RefAddr
see
StringRefAddr
since
1.3

Fields Summary
private Object
contents
Contains the contents of this address. Can be null.
Constructors Summary
public SerializableObjectRefAddr(String addrType, Object contents)
Constructs a new instance of SerializableObjectRefAddr using its address type and contents.

param
addrType A non-null string describing the type of the address.
param
contents The possibly null contents of the address in the form of a string.

	super(addrType);
	this.contents = contents;
    
Methods Summary
public java.lang.ObjectgetContent()
Retrieves the contents of this address. The result is a string.

return
The possibly null address contents.

	return contents;