Interface ComponentSession.ExternalComponent
-
- All Superinterfaces:
org.xmpp.component.Component
- All Known Implementing Classes:
LocalComponentSession.LocalExternalComponent
- Enclosing interface:
- ComponentSession
public static interface ComponentSession.ExternalComponent extends org.xmpp.component.Component
The ExternalComponent acts as a proxy of the remote connected component. Any Packet that is sent to this component will be delivered to the real component on the other side of the connection.An ExternalComponent will be added as a route in the RoutingTable for each connected external component. This implies that when the server receives a packet whose domain matches the external component services address then a route to the external component will be used and the packet will be forwarded to the component on the other side of the connection.
- Author:
- Gaston Dombiak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCategory()
String
getInitialSubdomain()
Collection<String>
getSubdomains()
String
getType()
void
setCategory(String category)
void
setName(String name)
void
setType(String type)
-