FileDocCategorySizeDatePackage
RPReply.javaAPI DocAzureus 3.0.3.41782Tue Jan 10 13:48:24 GMT 2006org.gudy.azureus2.pluginsimpl.remote

RPReply

public class RPReply extends Object implements Serializable
author
parg

Fields Summary
public Object
response
protected transient Map
properties
Constructors Summary
public RPReply(Object _response)


    
    
               
    
        response    = _response;
    
Methods Summary
public java.util.MapgetProperties()

        return( properties );
    
public java.lang.ObjectgetResponse()

        if (response instanceof RPException){
            throw((RPException)response);
        }
        else if (response instanceof Throwable) {
            throw new RPThrowableAsReplyException((Throwable)response);
        }
        return response;
    
public voidsetProperty(java.lang.String name, java.lang.String value)

        properties.put( name, value );