org.rhq.core.domain.resource
Enum InventoryStatus
java.lang.Object
java.lang.Enum<InventoryStatus>
org.rhq.core.domain.resource.InventoryStatus
- All Implemented Interfaces:
- Serializable, Comparable<InventoryStatus>
public enum InventoryStatus
- extends Enum<InventoryStatus>
Represents a resource's current inventory status.
Method Summary |
static InventoryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InventoryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
NEW
public static final InventoryStatus NEW
- NEW: Auto-discovered but not yet imported into the inventory.
- IGNORED: Auto-discovered but explicitly moved to a state that will suppress it from showing up in future
discoveries. Resources in this state will not be shown in the inventory browser.
- COMMITTED: Resources in this state will be visible in the inventory browser. The act of importing
resources changes their state from NEW to COMMITTED. Note: resources that are factory-created
or manually added will also appear in the inventory browser and, thus, will be COMMITTED.
- DELETED: Resources can be removed from the remote box, which will flip their status to DELETED to suppress
them from showing up in the inventory browser.
- UNINVENTORIED: Resources can be removed from the inventory. Since this is an expensive operation, these
resources are temporarily marked as UNINVENTORIED which will suppress them from showing up
in the inventory browser. Then, in the background, all history will be purged for these
resources, after which they are removed from the database completely.
IGNORED
public static final InventoryStatus IGNORED
COMMITTED
public static final InventoryStatus COMMITTED
DELETED
public static final InventoryStatus DELETED
UNINVENTORIED
public static final InventoryStatus UNINVENTORIED
values
public static InventoryStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (InventoryStatus c : InventoryStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static InventoryStatus valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2008-2011 Red Hat, Inc.. All Rights Reserved.