| java.lang.Object dalma.EndPoint
All known Subclasses: dalma.impl.EndPointImpl,
EndPoint | abstract public class EndPoint implements Serializable(Code) | | Represents a gate through which
Conversation s communicate with
outer world.
TODO: One engine may have more than one instances of the same endPoint
(such as using multiple POP3 ports, etc.) How do we configure this?
Perhaps by using Spring?
TODO: allow JMX to monitor the endPoint status
TODO: endPoint setting needs to be persistable. How do we do this?
ports tend to have other native resources.
TODO: check if the endPoint is really necessary at the engine level.
author: Kohsuke Kawaguchi |
create | public static EndPoint create(String endPointName, String endpointURL) throws ParseException(Code) | | Creates a new
EndPoint from a connection string.
Parameters: endPointName - this value will be returned from EndPoint.getName.Must not be null. Parameters: endpointURL - A connection string. Must not be null. always non-null valid object throws: ParseException - if there was an error in the connection string. |
getName | public String getName()(Code) | | Gets the unique name that identifies this
EndPoint within an
Engine .
always non-null valid object. |
|
|