Package de.xima.fc.entities
Class ProjektZaehler
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.ProjektZaehler
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,IMandantDependent
,IProjektDependent
,ITransferable
,ITransferableEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class ProjektZaehler extends AbstractEntity implements IProjektDependent, IMandantDependent
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_AUFRUFE
static String
ATTR_EINGAENGE
static String
ATTR_FEHLER
-
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
-
Fields inherited from interface de.xima.fc.entities.interfaces.IMandantDependent
ATTR_MANDANT, COL_CLIENT_ID
-
Fields inherited from interface de.xima.fc.entities.interfaces.IProjektDependent
ATTR_PROJEKT
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
-
Constructor Summary
Constructors Constructor Description ProjektZaehler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAufruf()
void
addEingang()
void
addFehler()
long
getAufrufe()
long
getEingaenge()
long
getFehler()
Long
getId()
Mandant
getMandant()
Projekt
getProjekt()
void
setAufrufe(long aufrufe)
void
setEingaenge(long eingaenge)
void
setFehler(long fehler)
void
setMandant(Mandant mandant)
void
setProjekt(Projekt projekt)
-
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId, setId
-
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
ATTR_AUFRUFE
public static final String ATTR_AUFRUFE
- See Also:
- Constant Field Values
-
ATTR_EINGAENGE
public static final String ATTR_EINGAENGE
- See Also:
- Constant Field Values
-
ATTR_FEHLER
public static final String ATTR_FEHLER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMandant
public Mandant getMandant()
- Specified by:
getMandant
in interfaceIMandantDependent
-
setMandant
public void setMandant(Mandant mandant)
- Specified by:
setMandant
in interfaceIMandantDependent
-
getProjekt
public Projekt getProjekt()
- Specified by:
getProjekt
in interfaceIProjektDependent
- Returns:
- the projekt
-
setProjekt
public void setProjekt(Projekt projekt)
- Specified by:
setProjekt
in interfaceIProjektDependent
- Parameters:
projekt
- the projekt to set
-
getAufrufe
public long getAufrufe()
- Returns:
- the aufrufe
-
setAufrufe
public void setAufrufe(long aufrufe)
- Parameters:
aufrufe
- the aufrufe to set
-
getEingaenge
public long getEingaenge()
- Returns:
- the eingaenge
-
setEingaenge
public void setEingaenge(long eingaenge)
- Parameters:
eingaenge
- the eingaenge to set
-
getFehler
public long getFehler()
- Returns:
- the fehler
-
setFehler
public void setFehler(long fehler)
- Parameters:
fehler
- the fehler to set
-
addFehler
public void addFehler()
-
addEingang
public void addEingang()
-
addAufruf
public void addAufruf()
-
-