Class AccountVO
- java.lang.Object
-
- org.cyclos.model.Bean
-
- org.cyclos.model.EntityModel
-
- org.cyclos.model.EntityVO
-
- org.cyclos.model.banking.accounts.AccountVO
-
- All Implemented Interfaces:
Serializable,IEntity
- Direct Known Subclasses:
AccountWithCurrencyVO
public class AccountVO extends EntityVO
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static BasicProperty<Boolean,AccountVO>ACTIVEstatic StringCLASS_NAMEstatic BasicProperty<String,AccountVO>NUMBERstatic BasicProperty<InternalAccountOwner,AccountVO>OWNERstatic BasicProperty<AccountTypeVO,AccountVO>TYPE-
Fields inherited from class org.cyclos.model.EntityModel
ID
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringclassName()protected List<Property<?,?>>doGetProperties()BooleangetActive()StringgetNumber()InternalAccountOwnergetOwner()AccountTypeVOgetType()voidsetActive(Boolean active)voidsetNumber(String number)voidsetOwner(InternalAccountOwner owner)voidsetType(AccountTypeVO type)-
Methods inherited from class org.cyclos.model.EntityModel
getId, setId, toString
-
Methods inherited from class org.cyclos.model.Bean
addPropertyChangeListener, addPropertyChangeListener, attributeNames, backup, changes, clearAttributes, copyPropertiesTo, copyPropertiesTo, copyPropertiesTo, dataAccessor, firePropertyChange, get, getAttribute, initDataAccessor, properties, property, propertyMap, removeAttribute, removePropertyChangeListener, removePropertyChangeListener, restore, set, set, setAttribute, setWithPropagationId, values
-
-
-
-
Field Detail
-
CLASS_NAME
public static final String CLASS_NAME
-
ACTIVE
public static final BasicProperty<Boolean,AccountVO> ACTIVE
-
NUMBER
public static final BasicProperty<String,AccountVO> NUMBER
-
OWNER
public static final BasicProperty<InternalAccountOwner,AccountVO> OWNER
-
TYPE
public static final BasicProperty<AccountTypeVO,AccountVO> TYPE
-
-
Method Detail
-
doGetProperties
protected List<Property<?,?>> doGetProperties()
- Overrides:
doGetPropertiesin classEntityModel
-
getActive
public Boolean getActive()
-
setActive
public void setActive(Boolean active)
-
getNumber
public String getNumber()
-
setNumber
public void setNumber(String number)
-
getOwner
public InternalAccountOwner getOwner()
-
setOwner
public void setOwner(InternalAccountOwner owner)
-
getType
public AccountTypeVO getType()
-
setType
public void setType(AccountTypeVO type)
-
-