Class Employee
- java.lang.Object
-
- org.apache.camel.quarkus.component.nitrite.it.Employee
-
- All Implemented Interfaces:
Serializable,Cloneable
- Direct Known Subclasses:
EmployeeMappable,EmployeeSerializable
public abstract class Employee extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Objectclone()StringgetAddress()abstract longgetEmpId()DategetJoinDate()StringgetName()voidsetAddress(String address)abstract voidsetEmpId(long empId)voidsetJoinDate(Date joinDate)voidsetName(String name)StringtoString()
-
-
-
Method Detail
-
getEmpId
public abstract long getEmpId()
-
setEmpId
public abstract void setEmpId(long empId)
-
getJoinDate
public Date getJoinDate()
-
setJoinDate
public void setJoinDate(Date joinDate)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
clone
public Object clone() throws CloneNotSupportedException
- Overrides:
clonein classObject- Throws:
CloneNotSupportedException
-
-