Package com.swiftmq.mgmt.protocol.v750
Class RouterConfigRequest
- java.lang.Object
-
- com.swiftmq.tools.requestreply.Request
-
- com.swiftmq.mgmt.protocol.v750.RouterConfigRequest
-
- All Implemented Interfaces:
Dumpable
,java.io.Serializable
public class RouterConfigRequest extends Request
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.swiftmq.tools.requestreply.Request
_sem, NO_TIMEOUT
-
-
Constructor Summary
Constructors Constructor Description RouterConfigRequest()
RouterConfigRequest(int connectId, java.lang.String routerName, byte[] buffer, int length)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(RequestVisitor visitor)
protected Reply
createReplyInstance()
byte[]
getBuffer()
int
getConnectId()
int
getDumpId()
Returns a unique dump id for this object.int
getLength()
java.lang.String
getRouterName()
void
readContent(java.io.DataInput in)
Read the content of this object from the stream.void
setBuffer(byte[] buffer)
void
setConnectId(int connectId)
void
setLength(int length)
void
setRouterName(java.lang.String routerName)
java.lang.String
toString()
void
writeContent(java.io.DataOutput out)
Write the content of this object to the stream.-
Methods inherited from class com.swiftmq.tools.requestreply.Request
createReply, getConnectionId, getCorrelationId, getDispatchId, getValidator, isCancelledByValidator, isDoRetry, isReplyRequired, isWasRetry, setCancelledByValidator, setConnectionId, setCorrelationId, setDispatchId, setDoRetry, setReplyRequired, setValidator
-
-
-
-
Method Detail
-
getConnectId
public int getConnectId()
-
setConnectId
public void setConnectId(int connectId)
-
getRouterName
public java.lang.String getRouterName()
-
setRouterName
public void setRouterName(java.lang.String routerName)
-
getBuffer
public byte[] getBuffer()
-
setBuffer
public void setBuffer(byte[] buffer)
-
getLength
public int getLength()
-
setLength
public void setLength(int length)
-
getDumpId
public int getDumpId()
Description copied from interface:Dumpable
Returns a unique dump id for this object.
-
writeContent
public void writeContent(java.io.DataOutput out) throws java.io.IOException
Description copied from interface:Dumpable
Write the content of this object to the stream.- Specified by:
writeContent
in interfaceDumpable
- Overrides:
writeContent
in classRequest
- Parameters:
out
- output stream- Throws:
java.io.IOException
- if an error occurs
-
readContent
public void readContent(java.io.DataInput in) throws java.io.IOException
Description copied from interface:Dumpable
Read the content of this object from the stream.- Specified by:
readContent
in interfaceDumpable
- Overrides:
readContent
in classRequest
- Parameters:
in
- input stream- Throws:
java.io.IOException
- if an error occurs
-
createReplyInstance
protected Reply createReplyInstance()
- Specified by:
createReplyInstance
in classRequest
-
accept
public void accept(RequestVisitor visitor)
-
-