Class AbstractDataEntity
- java.lang.Object
-
- org.neotropic.kuwaiba.modules.commercial.sync.model.AbstractDataEntity
-
- Direct Known Subclasses:
BridgeDomain
,NetworkInterface
,TableData
public abstract class AbstractDataEntity extends Object
The information from the sync data sources (devices, NMS, third-party databases, etc) id retrieved and stored in high-level data types to be processed later. This is the root class of all these high-level data types.- Author:
- Charles Edward Bedon Cortazar <charles.bedon@kuwaiba.org>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbstractDataEntity.DATA_TYPE
-
Constructor Summary
Constructors Constructor Description AbstractDataEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description String
getName()
abstract AbstractDataEntity.DATA_TYPE
getType()
Object
getValue()
void
setName(String name)
void
setValue(Object value)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getType
public abstract AbstractDataEntity.DATA_TYPE getType()
-
getValue
public Object getValue()
-
setValue
public void setValue(Object value)
-
-