Class Person
- java.lang.Object
-
- org.apache.camel.quarkus.component.jaxb.it.model.Person
-
public class Person extends Object
-
-
Constructor Summary
Constructors Constructor Description Person()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetAge()Gets the value of the age property.StringgetFirstName()Gets the value of the firstName property.StringgetLastName()Gets the value of the lastName property.voidsetAge(Integer value)Sets the value of the age property.voidsetFirstName(String value)Sets the value of the firstName property.voidsetLastName(String value)Sets the value of the lastName property.StringtoString()PersonwithAge(Integer value)PersonwithFirstName(String value)PersonwithLastName(String value)
-
-
-
Method Detail
-
getFirstName
public String getFirstName()
Gets the value of the firstName property.- Returns:
- possible object is
String
-
setFirstName
public void setFirstName(String value)
Sets the value of the firstName property.- Parameters:
value- allowed object isString
-
getLastName
public String getLastName()
Gets the value of the lastName property.- Returns:
- possible object is
String
-
setLastName
public void setLastName(String value)
Sets the value of the lastName property.- Parameters:
value- allowed object isString
-
getAge
public Integer getAge()
Gets the value of the age property.- Returns:
- possible object is
Integer
-
setAge
public void setAge(Integer value)
Sets the value of the age property.- Parameters:
value- allowed object isInteger
-
-