org.smpp.pdu.Response Maven / Gradle / Ivy
/*
* Copyright (c) 1996-2001
* Logica Mobile Networks Limited
* All rights reserved.
*
* This software is distributed under Logica Open Source License Version 1.0
* ("Licence Agreement"). You shall use it and distribute only in accordance
* with the terms of the License Agreement.
*
*/
package org.smpp.pdu;
import org.smpp.pdu.PDU;
/**
* Represents a PDU response. All classes which are used as SMPP response are
* derived from this class.
*
* @author Logica Mobile Networks SMPP Open Source Team
* @version $Revision: 1.1 $
*/
public abstract class Response extends PDU {
/**
* The original request which this response relates to.
* @see Request#getResponse()
*/
private Request originalRequest = null;
/** Create a request PDU with default parameters. */
public Response() {
}
/**
* Create response PDU with given command id.
* Derived classes usually uses super(THE_COMMAND_ID)
* where the THE_COMMAND_ID
is the command id of the
* PDU the derived class represents.
*/
public Response(int commandId) {
super(commandId);
}
/**
* Returns false as there can be no response to a response.
* @see PDU#canResponse()
*/
public boolean canResponse() {
return false;
}
/**
* Returns false.
* @see PDU#isRequest()
*/
public boolean isRequest() {
return false;
}
/**
* Returns true.
* @see PDU#isResponse()
*/
public boolean isResponse() {
return true;
}
/**
* Sets the original Request
which this Response
* was created from.
* @see Request#getResponse()
*/
public void setOriginalRequest(Request originalRequest) {
this.originalRequest = originalRequest;
}
/**
* Returns the original Request
which this Response
* was created from.
* @see Request#getResponse()
*/
public Request getOriginalRequest() {
return originalRequest;
}
}
/*
* $Log: not supported by cvs2svn $
*
* Old changelog:
* 02-10-01 [email protected] comments added, indentation changed -> spaces
* 09-10-01 [email protected] added registration of original request if the response
* was created from Request by getResponse
*/