|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IOutputMessage
Defines a interface to a output message which can be used with A-Select.
Description:
Defines an interface to a message that can be used with A-Select. An output
message can be created step-by-step and finally sent.
OutputMessage
can be used as a interface to the internal
messages of the IMessageCreatorInterface
. This interface is
provided to access the communication in a transparent manner.
The OuputMessage interface only specifies methods for
setting information in the output message.
Concurrency issues:
-
Method Summary | |
---|---|
boolean |
send()
Sends this message. |
boolean |
setParam(java.lang.String sName,
java.lang.String sValue)
Sets a parameter in the message. |
boolean |
setParam(java.lang.String sName,
java.lang.String[] saValues)
Sets a array parameter in the message. |
Method Detail |
---|
boolean setParam(java.lang.String sName, java.lang.String sValue) throws ASelectCommunicationException
sName
must contain a valid parameter name.sValue
must contain a valid parameter value.
sName
- The name of the parametersValue
- The value of the parameter
ASelectCommunicationException
- If communication fails.boolean setParam(java.lang.String sName, java.lang.String[] saValues) throws ASelectCommunicationException
sName
must contain a valid parameter name.saValues
must contain valid array parameter values.
sName
- The name of the parametersaValues
- The values of the parameter
ASelectCommunicationException
- If communication fails.boolean send() throws ASelectCommunicationException
ASelectCommunicationException
- If communication fails.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |