Package org.cyclos.entities.system
Class ImportedLineValue
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.NetworkedEntity
-
- org.cyclos.entities.BaseEntity
-
- org.cyclos.entities.system.ImportedLineValue
-
- All Implemented Interfaces:
Cloneable,HasNetwork,ProcessableForDataTranslation,IEntity
@Entity public class ImportedLineValue extends BaseEntity
Represents an import value.
For example, if we have a field like this address[0].line1:
importField refers to the canonical name of the field: address.line1 (without the id part)
importFieldId refers to the field id: 0 in this case.
value is the exact imported value for this field.
-
-
Constructor Summary
Constructors Constructor Description ImportedLineValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImportedLinegetImportedLine()StringgetImportField()StringgetImportFieldId()NetworkgetNetwork()Returns the network this entity belongs toStringgetValue()voidsetImportedLine(ImportedLine importedLine)voidsetImportField(String importField)voidsetImportFieldId(String importFieldId)voidsetValue(String value)-
Methods inherited from class org.cyclos.entities.BaseEntity
getDataTranslationType, getVersion
-
Methods inherited from class org.cyclos.entities.NetworkedEntity
isGlobal
-
Methods inherited from class org.cyclos.entities.SimpleEntity
clone, equals, getId, hashCode, id, ids, isPersistent, isTransient, setId, toShortString, toString, uniqueIds, uniqueIds
-
-
-
-
Method Detail
-
getImportedLine
public ImportedLine getImportedLine()
-
getImportField
public String getImportField()
-
getImportFieldId
public String getImportFieldId()
-
getNetwork
public Network getNetwork()
Description copied from interface:HasNetworkReturns the network this entity belongs to
-
getValue
public String getValue()
-
setImportedLine
public void setImportedLine(ImportedLine importedLine)
-
setImportField
public void setImportField(String importField)
-
setImportFieldId
public void setImportFieldId(String importFieldId)
-
setValue
public void setValue(String value)
-
-