Package | Description |
---|---|
com.opencloud.slee.resources.cgin |
Defines an API for the CGIN infrastructure on which all protocols are built.
|
com.opencloud.slee.resources.in.datatypes.cc |
Defines classes to represent some call-control types
for which their ASN.1 specifications say merely OCTET STRING (with no CONTAINING clause),
and for which standards define the layout of bit-fields within the octet strings.
|
Modifier and Type | Method and Description |
---|---|
SccpAddress |
SccpAddress.clone() |
static SccpAddress |
SccpAddress.copyOf(SccpAddress from) |
SccpAddress |
DialogOpenRequestEvent.getDestinationAddress()
Get the destination SCCP address of the open request.
|
SccpAddress |
DialogOpenRequestEvent.getOriginatingAddress()
Get the originating SCCP address of the open request.
|
SccpAddress |
DialogOpenRefuseEvent.getResponderAddress()
Get the SCCP address of the responder.
|
SccpAddress |
DialogOpenAcceptEvent.getResponderAddress()
Get the SCCP address of the responder.
|
static SccpAddress |
SccpAddressParser.parseSccpAddress(String addressString)
Parse an SCCP address string to return an
SccpAddress object
initialised to the values specified by the string. |
Modifier and Type | Method and Description |
---|---|
void |
Dialog.acceptDialog(SccpAddress responderAddress,
Object... userInformation)
Issue a dialog open request acceptance response on this dialog.
|
static SccpAddress |
SccpAddress.copyOf(SccpAddress from) |
static String |
SccpAddressParser.encodeSccpAddress(SccpAddress address)
Obtain a string value for an
SccpAddress . |
Dialog |
CGINProvider.issueOpenRequest(TcapApplicationContext appContext,
ObjectID appContextName,
SccpAddress origAddress,
SccpAddress destAddress,
long timeout,
Object... userInformation)
Attempt to open a new dialog.
|
Dialog |
CGINProvider.issueOpenRequest(TcapApplicationContext appContext,
SccpAddress destAddress)
Attempt to open a new dialog.
|
Dialog |
CGINProvider.issueStatelessOpenRequest(TcapApplicationContext appContext,
ObjectID appContextName,
byte[] origTransactionID,
SccpAddress origAddress,
SccpAddress destAddress,
Object... userInformation)
Attempt to open a new stateless dialog.
|
void |
Dialog.refuseDialog(OpenRefuseReason reason,
TcapApplicationContext applicationContext,
SccpAddress responderAddress,
Object... userInformation)
Refuse an open dialog request.
|
Dialog |
CGINProvider.relayStatelessOpenRequest(DialogOpenRequestEvent openRequest,
SccpAddress destAddress)
Create a stateless dialog suitable for relaying the given open request.
|
void |
Dialog.setRemoteAddress(SccpAddress remoteAddress)
Set the remote SCCP address for future outgoing messages.
|
Constructor and Description |
---|
DialogOpenAcceptEvent(Dialog dialog,
SccpAddress responderAddress,
Object[] userInformation)
Create a new open-accept event.
|
DialogOpenRefuseEvent(Dialog dialog,
OpenRefuseReason refuseReason,
PAbortCause pAbortCause,
SccpAddress responderAddress,
TcapApplicationContext applicationContext,
Object[] userInformation)
Create a new open-refuse event.
|
DialogOpenRequestEvent(Dialog dialog,
SccpAddress originatingAddress,
SccpAddress destinationAddress,
boolean hasOriginatingL3PointCode,
int originatingL3PointCode,
boolean hasDestinationL3PointCode,
int destinationL3PointCode,
TcapApplicationContext applicationContext,
Object[] userInformation,
ComponentEvent[] componentEvents)
Construct a new Open Request event
|
Modifier and Type | Method and Description |
---|---|
SccpAddress |
AddressString.toSccpAddress(SccpAddress.Type sccpAddressType)
Obtain an SCCP address from this ISDN address.
|
SccpAddress |
AddressString.toSccpAddress(SccpAddress.Type sccpAddressType,
StringCodec<AddressString> codec)
Obtain an SCCP address from this ISDN address.
|