com.platform.symphony.soam
Class ResourceAttributeScope
java.lang.Object
com.platform.symphony.soam.ResourceAttributeScope
public final class ResourceAttributeScope
- extends java.lang.Object
Values indicating the scope of the ResourceAttribute
being published.
These values should be specified as an argument to the
ResourceAttribute.setScope()
method call.
NOTE: If any of the methods of this class are called after the main(...) method exits,
the client or service process may behave in an undefined manner (for example,
hang or terminate abnormally).
- See Also:
ResourceAttribute
,
ResourceAttribute.setScope(long)
Field Summary |
static long |
HOST
Resource attributes published with "Host" scope will be associated with the execution host. |
static long |
INSTANCE
Resource attributes published with "Instance" scope will be associated with the current
service instance from which the resource attribute is being published. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
INSTANCE
public static final long INSTANCE
- Resource attributes published with "Instance" scope will be associated with the current
service instance from which the resource attribute is being published.
When scope is not explicitly specified for a resource attribute, "Instance" will be assumed.
- See Also:
- Constant Field Values
HOST
public static final long HOST
- Resource attributes published with "Host" scope will be associated with the execution host.
- See Also:
- Constant Field Values
ResourceAttributeScope
public ResourceAttributeScope()