|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.rice.krad.bo.BusinessObjectBase
org.kuali.rice.krad.bo.PersistableBusinessObjectBase
org.kuali.rice.krad.document.DocumentBase
org.kuali.rice.krad.document.TransactionalDocumentBase
edu.sampleu.travel.approval.TravelAuthorizationDocument
@Entity public class TravelAuthorizationDocument
Travel authorization transactional document.
This is a sample KRAD transactional document that demonstrates how to implement transactional documents within the KRAD UIF.
Field Summary |
---|
Fields inherited from class org.kuali.rice.krad.document.DocumentBase |
---|
documentHeader, documentNumber |
Fields inherited from class org.kuali.rice.krad.bo.PersistableBusinessObjectBase |
---|
extension, versionNumber |
Constructor Summary | |
---|---|
TravelAuthorizationDocument()
|
Method Summary | |
---|---|
String |
getCellPhoneNumber()
Returns the cell phone number. |
String |
getCitizenshipCountryCode()
Returns the citizenship country code. |
PrimaryDestination |
getPrimaryDestination()
Returns primary destination. |
Integer |
getPrimaryDestinationId()
Returns the destination id. |
String |
getRegionFamiliarity()
Returns the region familiarity. |
String |
getTransportationModeCode()
Returns the transportation mode code. |
List<TravelAdvance> |
getTravelAdvanceList()
Returns travel advance collection. |
String |
getTravelDocumentIdentifier()
Returns the travel document identifier. |
TravelerDetail |
getTravelerDetail()
Returns the nested traveler detail. |
Integer |
getTravelerDetailId()
Returns the traveler detail id. |
Date |
getTripBegin()
Returns the trip begin date. |
String |
getTripDescription()
Returns the trip description. |
Date |
getTripEnd()
Returns the trip end date. |
String |
getTripTypeCode()
Returns the trip type. |
void |
setCitizenshipCountryCode(String citizenshipCountryCode)
Initializes the citizenship country code. |
void |
setPrimaryDestination(PrimaryDestination primaryDestination)
Initializes the primary destination. |
void |
setPrimaryDestinationId(Integer primaryDestinationId)
Initializes the primary destination id. |
void |
setRegionFamiliarity(String regionFamiliarity)
Initializes the region familiarity. |
void |
setTransportationModeCode(String transportationModeCode)
Initializes the transportation mode code. |
void |
setTravelAdvanceList(List<TravelAdvance> travelAdvanceList)
Initializes travel advance collection. |
void |
setTravelDocumentIdentifier(String travelDocumentIdentifier)
Initializes the document identifier. |
void |
setTravelerDetail(TravelerDetail travelerDetail)
Initializes the nested traveler detail object. |
void |
setTravelerDetailId(Integer travelerDetailId)
Initializes the traveler detail id. |
void |
setTravelerDetailId(String cellPhoneNumber)
Initializes the cell phone number. |
void |
setTripBegin(Date tripBegin)
Initializes the trip starting date. |
void |
setTripDescription(String tripDescription)
Initializes the trip description. |
void |
setTripEnd(Date tripEnd)
Initializes the trip ending date. |
void |
setTripTypeCode(String tripTypeCode)
Initializes the trip type. |
Methods inherited from class org.kuali.rice.krad.document.TransactionalDocumentBase |
---|
getAllowsCopy, isSessionDocument |
Methods inherited from class org.kuali.rice.krad.bo.BusinessObjectBase |
---|
toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.kuali.rice.krad.bo.PersistableBusinessObject |
---|
buildListOfDeletionAwareLists, getExtension, isNewCollectionRecord, linkEditableUserFields, refreshNonUpdateableReferences, refreshReferenceObject, setExtension, setNewCollectionRecord, setObjectId, setVersionNumber |
Methods inherited from interface org.kuali.rice.krad.bo.BusinessObject |
---|
refresh |
Methods inherited from interface org.kuali.rice.core.api.mo.ModelObjectBasic |
---|
toString |
Methods inherited from interface org.kuali.rice.core.api.mo.common.Versioned |
---|
getVersionNumber |
Methods inherited from interface org.kuali.rice.core.api.mo.common.GloballyUnique |
---|
getObjectId |
Constructor Detail |
---|
public TravelAuthorizationDocument()
Method Detail |
---|
public String getTravelDocumentIdentifier()
Gets the travel document identifier.
public void setTravelDocumentIdentifier(String travelDocumentIdentifier)
Sets the document identifier.
travelDocumentIdentifier
- - document identifierpublic Date getTripBegin()
Gets the trip begin date.
public void setTripBegin(Date tripBegin)
Sets the trip begin date.
tripBegin
- - trip starting datepublic Date getTripEnd()
Gets the trip end date.
public void setTripEnd(Date tripEnd)
Sets the trip end date.
tripEnd
- - trip ending datepublic String getTripDescription()
Gets the trip description.
public void setTripDescription(String tripDescription)
Sets the trip description.
tripDescription-
- trip descriptionpublic void setTripTypeCode(String tripTypeCode)
Sets the trip type.
tripTypeCode
- - trip typepublic String getTripTypeCode()
Gets the trip type.
public Integer getPrimaryDestinationId()
Gets the primary key for the destination.
public void setPrimaryDestinationId(Integer primaryDestinationId)
Sets the primary destination id.
primaryDestinationId
- - integer of primary destination idpublic Integer getTravelerDetailId()
Gets the primary key for the traveler.
public void setTravelerDetailId(Integer travelerDetailId)
Sets the traveler detail id.
travelerDetailId
- - integer of primary destination idpublic TravelerDetail getTravelerDetail()
Gets the traveler detail object.
public void setTravelerDetail(TravelerDetail travelerDetail)
Sets the traveler detail.
travelerDetail
- - traveler detail objectpublic PrimaryDestination getPrimaryDestination()
Gets the primary destination
public void setPrimaryDestination(PrimaryDestination primaryDestination)
Sets the primary destination.
primaryDestination
- - primary destinationpublic List<TravelAdvance> getTravelAdvanceList()
Gets the travel advance collection.
public void setTravelAdvanceList(List<TravelAdvance> travelAdvanceList)
Sets the travel advance collection.
travelAdvanceList
- - travel advance collectionpublic String getCellPhoneNumber()
Gets the emergency contact cell phone number.
public void setTravelerDetailId(String cellPhoneNumber)
Sets the emergency contact cell phone number.
cellPhoneNumber
- - string of the cell phone numberpublic String getRegionFamiliarity()
Gets the emergency contact region familiarity.
public void setRegionFamiliarity(String regionFamiliarity)
Sets the emergency contact region familiarity.
regionFamiliarity
- - string of the region familiaritypublic String getCitizenshipCountryCode()
Gets the emergency contact citizenship country code.
public void setCitizenshipCountryCode(String citizenshipCountryCode)
Sets the emergency contact citizenship country code.
citizenshipCountryCode
- - string of the citizenship country codepublic String getTransportationModeCode()
Gets the emergency contact transportation mode cpde.
public void setTransportationModeCode(String transportationModeCode)
Sets the emergency contact transportation mode code.
transportationModeCode
- - string of the transportation mode code
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |