Class CollectionAgentDTO
- java.lang.Object
-
- org.opennms.netmgt.collection.dto.CollectionAgentDTO
-
- All Implemented Interfaces:
CollectionAgent
public class CollectionAgentDTO extends java.lang.Object implements CollectionAgent
-
-
Constructor Summary
Constructors Constructor Description CollectionAgentDTO()
CollectionAgentDTO(CollectionAgent agent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.net.InetAddress
getAddress()
Returns the address information for the interface.<V> V
getAttribute(java.lang.String property)
This method is used to return the object that is associated with the property name.java.util.Set<java.lang.String>
getAttributeNames()
Retrieves the names of all available attributes.java.lang.String
getForeignId()
getForeignIdjava.lang.String
getForeignSource()
getForeignSourcejava.lang.String
getHostAddress()
getHostAddressjava.lang.String
getLocationName()
getLocationNameint
getNodeId()
getNodeIdjava.lang.String
getNodeLabel()
getNodeLabellong
getSavedSysUpTime()
getSavedSysUpTimeResourcePath
getStorageResourcePath()
int
hashCode()
java.lang.Boolean
isStoreByForeignSource()
isStoreByForeignSourcevoid
setAddress(java.net.InetAddress address)
java.lang.Object
setAttribute(java.lang.String property, java.lang.Object value)
This method is used to associate an object value with a textual key.void
setForeignId(java.lang.String foreignId)
void
setForeignSource(java.lang.String foreignSource)
void
setLocationName(java.lang.String location)
void
setNodeId(int nodeId)
void
setNodeLabel(java.lang.String nodeLabel)
void
setSavedSysUpTime(long sysUpTime)
setSavedSysUpTimevoid
setStorageResourcePath(ResourcePath storageResourcePath)
void
setStoreByForeignSource(java.lang.Boolean storeByForeignSource)
java.lang.String
toString()
-
-
-
Constructor Detail
-
CollectionAgentDTO
public CollectionAgentDTO()
-
CollectionAgentDTO
public CollectionAgentDTO(CollectionAgent agent)
-
-
Method Detail
-
getAddress
public java.net.InetAddress getAddress()
Description copied from interface:CollectionAgent
Returns the address information for the interface.
- Specified by:
getAddress
in interfaceCollectionAgent
- Returns:
- a
Object
object.
-
setAddress
public void setAddress(java.net.InetAddress address)
-
getAttributeNames
public java.util.Set<java.lang.String> getAttributeNames()
Description copied from interface:CollectionAgent
Retrieves the names of all available attributes.- Specified by:
getAttributeNames
in interfaceCollectionAgent
- Returns:
- a
Set
that contains the name of all configured attributes
-
getAttribute
public <V> V getAttribute(java.lang.String property)
Description copied from interface:CollectionAgent
This method is used to return the object that is associated with the property name. This is very similar to the java.util.Map get() method, but requires that the lookup be performed using a String name. The object may be of any instance that the monitor previous stored.
If there is no matching object for the property key, then a null pointer is returned to the application.
- Specified by:
getAttribute
in interfaceCollectionAgent
- Parameters:
property
- The key for the lookup.- Returns:
- The resulting value for the key, null if no value exist.
- See Also:
Map.get(java.lang.Object)
-
setAttribute
public java.lang.Object setAttribute(java.lang.String property, java.lang.Object value)
Description copied from interface:CollectionAgent
This method is used to associate an object value with a textual key. If a previous value was associated with the key then the old value is returned to the caller. This is identical to the behavior defined by the java.util.Map put() method. The only restriction is that the key must be a java string instance.
- Specified by:
setAttribute
in interfaceCollectionAgent
- Parameters:
property
- The keyvalue
- The value to associate with the key- Returns:
- The object that was previously associated with the key. Null is returned if there was no previous value associated.
- See Also:
Map.put(java.lang.Object, java.lang.Object)
-
isStoreByForeignSource
public java.lang.Boolean isStoreByForeignSource()
Description copied from interface:CollectionAgent
isStoreByForeignSource
- Specified by:
isStoreByForeignSource
in interfaceCollectionAgent
- Returns:
- a
Boolean
object.
-
setStoreByForeignSource
public void setStoreByForeignSource(java.lang.Boolean storeByForeignSource)
-
getHostAddress
public java.lang.String getHostAddress()
Description copied from interface:CollectionAgent
getHostAddress
- Specified by:
getHostAddress
in interfaceCollectionAgent
- Returns:
- a
String
object.
-
getNodeId
public int getNodeId()
Description copied from interface:CollectionAgent
getNodeId
- Specified by:
getNodeId
in interfaceCollectionAgent
- Returns:
- a int.
-
setNodeId
public void setNodeId(int nodeId)
-
getNodeLabel
public java.lang.String getNodeLabel()
Description copied from interface:CollectionAgent
getNodeLabel
- Specified by:
getNodeLabel
in interfaceCollectionAgent
- Returns:
- a
String
object.
-
setNodeLabel
public void setNodeLabel(java.lang.String nodeLabel)
-
getForeignSource
public java.lang.String getForeignSource()
Description copied from interface:CollectionAgent
getForeignSource
- Specified by:
getForeignSource
in interfaceCollectionAgent
- Returns:
- a
String
object.
-
setForeignSource
public void setForeignSource(java.lang.String foreignSource)
-
getForeignId
public java.lang.String getForeignId()
Description copied from interface:CollectionAgent
getForeignId
- Specified by:
getForeignId
in interfaceCollectionAgent
- Returns:
- a
String
object.
-
setForeignId
public void setForeignId(java.lang.String foreignId)
-
getLocationName
public java.lang.String getLocationName()
Description copied from interface:CollectionAgent
getLocationName
- Specified by:
getLocationName
in interfaceCollectionAgent
- Returns:
- a
String
object.
-
setLocationName
public void setLocationName(java.lang.String location)
-
getStorageResourcePath
public ResourcePath getStorageResourcePath()
- Specified by:
getStorageResourcePath
in interfaceCollectionAgent
-
setStorageResourcePath
public void setStorageResourcePath(ResourcePath storageResourcePath)
-
getSavedSysUpTime
public long getSavedSysUpTime()
Description copied from interface:CollectionAgent
getSavedSysUpTime
- Specified by:
getSavedSysUpTime
in interfaceCollectionAgent
- Returns:
- a long.
-
setSavedSysUpTime
public void setSavedSysUpTime(long sysUpTime)
Description copied from interface:CollectionAgent
setSavedSysUpTime
- Specified by:
setSavedSysUpTime
in interfaceCollectionAgent
- Parameters:
sysUpTime
- a long.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-