public abstract class Status extends Object implements Serializable
Pour les données du référentiel, information permettant de déterminer si une donnée est valide, obsolète ou temporaire.
- obsolète (=inactif) : '0'
- valide (=actif) : '1'
- temporaire : '2'
note : on a préfère ici 'valide' au terme 'actif' (utilisé dans Harmonie), pour ne pas confondre avec par exemple l'activité d'un navire sur un mois.
| Modifier and Type | Class and Description |
|---|---|
static class |
Status.Factory
Constructs new instances of
Status. |
| Constructor and Description |
|---|
Status() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object object)
This entity does not have any identifiers
and is not extending any other entity,
so this method will only return
true if the argument reference and this
refer to the same object. |
String |
getCode() |
String |
getName() |
int |
hashCode()
Returns a hash code based on this entity's identifiers.
|
void |
setCode(String code) |
void |
setName(String name) |
public String getCode()
public void setCode(String code)
public String getName()
public void setName(String name)
public boolean equals(Object object)
true if the argument reference and this
refer to the same object.Copyright © 2013. All Rights Reserved.