public abstract class Buyer extends Object implements Serializable, Comparable<Buyer>
Modifier and Type | Class and Description |
---|---|
static class |
Buyer.Factory
Constructs new instances of
Buyer . |
Constructor and Description |
---|
Buyer() |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Buyer o) |
boolean |
equals(Object object)
Returns
true if the argument is an Buyer instance and all identifiers for this entity
equal the identifiers of the argument entity. |
String |
getAddress()
Adresse de l'acheteur (calculé à partir de street, zipCode et city)
|
BuyerType |
getBuyerType() |
String |
getCity() |
Integer |
getId()
Identifiant interne de l'acheteur.
|
String |
getName()
Nom de l'acheteur.
|
String |
getRegistrationCode()
Code de l'acheteur.
|
Status |
getStatus()
Pour les données du référentiel, information permettant de déterminer si une donnée est
valide,
obsolète ou temporaire
|
String |
getStreet() |
Timestamp |
getUpdateDate() |
String |
getZipCode() |
int |
hashCode()
Returns a hash code based on this entity's identifiers.
|
void |
setAddress(String addressIn)
Adresse de l'acheteur (calculé à partir de street, zipCode et city)
|
void |
setBuyerType(BuyerType buyerTypeIn) |
void |
setCity(String cityIn) |
void |
setId(Integer idIn)
Identifiant interne de l'acheteur.
|
void |
setName(String nameIn)
Nom de l'acheteur.
|
void |
setRegistrationCode(String registrationCodeIn)
Code de l'acheteur.
|
void |
setStatus(Status statusIn)
Pour les données du référentiel, information permettant de déterminer si une donnée est
valide,
obsolète ou temporaire
|
void |
setStreet(String streetIn) |
void |
setUpdateDate(Timestamp updateDateIn) |
void |
setZipCode(String zipCodeIn) |
public Buyer()
public Integer getId()
public void setId(Integer idIn)
idIn
- Integerpublic String getRegistrationCode()
public void setRegistrationCode(String registrationCodeIn)
registrationCodeIn
- Stringpublic String getName()
public void setName(String nameIn)
nameIn
- Stringpublic String getZipCode()
public void setZipCode(String zipCodeIn)
zipCodeIn
- Stringpublic String getAddress()
public void setAddress(String addressIn)
addressIn
- Stringpublic Timestamp getUpdateDate()
public void setUpdateDate(Timestamp updateDateIn)
updateDateIn
- Timestamppublic BuyerType getBuyerType()
public void setBuyerType(BuyerType buyerTypeIn)
buyerTypeIn
- BuyerTypepublic Status getStatus()
public void setStatus(Status statusIn)
statusIn
- Statuspublic boolean equals(Object object)
true
if the argument is an Buyer instance and all identifiers for this entity
equal the identifiers of the argument entity. Returns false
otherwise.public int hashCode()
public int compareTo(Buyer o)
compareTo
in interface Comparable<Buyer>
Comparable.compareTo(T)
Copyright © 2012–2014 IFREMER. All rights reserved.