| |
|
| java.lang.Object com.sun.jbi.messaging.Link
Link | final public class Link (Code) | | Typesafe enumeration containing link types.
author: JSR208 Expert Group |
Field Summary | |
final public static Link | HARD Indicates that the provided service endpoint name must match a service
provider’s service endpoint name; indirect connections are not allowed. | final public static Link | SOFT Indicates that the provided service endpoint must not match a service
provider’s service endpoint name; rather, it must match an indirect
connection name. | final public static Link | STANDARD Indicates that the provided service endpoint must be routed according
to standard normalized message routing rules. |
Method Summary | |
public boolean | equals(Link link) Equality test. | public int | hashCode() Returns hash code value for this object. | public String | toString() Returns string value of enumerated type. | public static Link | valueOf(String link) Returns instance of Link that corresponds to given string. |
HARD | final public static Link HARD(Code) | | Indicates that the provided service endpoint name must match a service
provider’s service endpoint name; indirect connections are not allowed.
|
SOFT | final public static Link SOFT(Code) | | Indicates that the provided service endpoint must not match a service
provider’s service endpoint name; rather, it must match an indirect
connection name.
|
STANDARD | final public static Link STANDARD(Code) | | Indicates that the provided service endpoint must be routed according
to standard normalized message routing rules.
|
equals | public boolean equals(Link link)(Code) | | Equality test.
Parameters: status - value to be compared for equality boolean result of test. |
hashCode | public int hashCode()(Code) | | Returns hash code value for this object.
hash code value |
toString | public String toString()(Code) | | Returns string value of enumerated type.
String representation of status value. |
|
|
|