To list resource adaptor entity link names that have been bound in the SLEE, use the following rhino-console command or related MBean operation.
Console command: listralinknames
Command  | 
listralinknames [entity name]
    List the bound link names (for the specified resource adaptor entity
 | 
|---|---|
Examples  | 
To list all resource adaptor entity link name bindings: $ ./rhino-console listralinknames slee/resources/cdr -> cdrra slee/resources/map -> mapra To list all link name bindings for the resource adaptor entity named  $ ./rhino-console listralinknames mapra slee/resources/map  | 
MBean operation:  getLinkNames
MBean  | 
|
|---|---|
SLEE-defined  | 
List all bound link names 
public String[] getLinkNames()
    throws ManagementException;
Rhino’s implementation of the SLEE-defined  List link names to which a specific resource adaptor entity has been bound 
public String[] getLinkNames(String entityName)
    throws NullPointerException,
            UnrecognizedResourceAdaptorEntityException,
            ManagementException;
The SLEE-defined operation also includes an argument for returning just link names to which a specified resource adaptor entity has been bound. If the resource adaptor entity has not been bound to any link names, the returned array is zero-length.  | 
