FileDocCategorySizeDatePackage
SendMessageData.javaAPI DocApache Tomcat 6.0.142378Fri Jul 20 04:20:32 BST 2007org.apache.catalina.ha.tcp

SendMessageData

public class SendMessageData extends Object
author
Peter Rossbach
version
$Revision: 531303 $ $Date: 2007-04-23 02:24:01 +0200 (lun., 23 avr. 2007) $

Fields Summary
private Object
message
private org.apache.catalina.tribes.Member
destination
private Exception
exception
Constructors Summary
public SendMessageData(Object message, org.apache.catalina.tribes.Member destination, Exception exception)

param
message
param
destination
param
exception

        super();
        this.message = message;
        this.destination = destination;
        this.exception = exception;
    
Methods Summary
public org.apache.catalina.tribes.MembergetDestination()

return
Returns the destination.

        return destination;
    
public java.lang.ExceptiongetException()

return
Returns the exception.

        return exception;
    
public java.lang.ObjectgetMessage()

return
Returns the message.

        return message;
    
public voidsetDestination(org.apache.catalina.tribes.Member destination)

param
destination The destination to set.

        this.destination = destination;
    
public voidsetException(java.lang.Exception exception)

param
exception The exception to set.

        this.exception = exception;
    
public voidsetMessage(java.lang.Object message)

param
message The message to set.

        this.message = message;