public class FinancialEntryContour
extends java.lang.Object
ContourEntry
.
Contour contains the following elements:
allocationStartDate
- The date the contour begins. Date format is yyyy/MM/dd. For example, 2001/01/11.entityId
- ID of the instance of the allocated role for which to get the contour. To get this ID, use
findEntity
for entity 54 (allocated role) and specify the project ID that contains the allocation.entityTypeId
- Supports Allocated Roles only (entity type 54).entries
- ContourEntry date/hour pairs.
<ns:return xsi:type="ax21:Contour" xmlns:ax21="http://objects.services/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ax21:startEntryDate>01/01/2018</ax21:startEntryDate>
<ax21:endEntryDate>02/01/2018</ax21:endEntryDate>
<ax21:entityId>1957973646</ax21:entityId>
<ax21:entityTypeId>300</ax21:entityTypeId>
<ax21:entries xsi:type="ax21:FinancialEntryContourEntry">
<ax21:periodDate>01/01/2018</ax21:periodDate>
<ax21:amount>825.50</ax21:amount>
</ax21:entries>
<ax21:entries xsi:type="ax21:FinancialEntryContourEntry">
<ax21:periodDate>02/01/2018</ax21:periodDate>
<ax21:amount>930.00</ax21:amount>
</ax21:entries>
</ns:return>
Constructor and Description |
---|
FinancialEntryContour() |
FinancialEntryContour(java.lang.Long entityTypeId,
java.lang.Long entityId) |
FinancialEntryContour(java.lang.Long entityTypeId,
java.lang.Long entityId,
java.lang.String startDate,
java.lang.String endDate) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getEndEntryDate() |
long |
getEntityId() |
long |
getEntityTypeId() |
FinancialEntryContourEntry[] |
getEntries() |
java.lang.String |
getStartEntryDate() |
void |
setEndEntryDate(java.lang.String endEntryDate) |
void |
setEntityId(long entityId) |
void |
setEntityTypeId(long entityTypeId) |
void |
setEntries(FinancialEntryContourEntry[] entries) |
void |
setStartEntryDate(java.lang.String startEntryDate) |
java.lang.String |
toString() |
public FinancialEntryContour()
public FinancialEntryContour(java.lang.Long entityTypeId, java.lang.Long entityId)
public FinancialEntryContour(java.lang.Long entityTypeId, java.lang.Long entityId, java.lang.String startDate, java.lang.String endDate)
public long getEntityTypeId()
public void setEntityTypeId(long entityTypeId)
public long getEntityId()
public void setEntityId(long entityId)
public java.lang.String getStartEntryDate()
public void setStartEntryDate(java.lang.String startEntryDate)
public java.lang.String getEndEntryDate()
public void setEndEntryDate(java.lang.String endEntryDate)
public FinancialEntryContourEntry[] getEntries()
public void setEntries(FinancialEntryContourEntry[] entries)
public java.lang.String toString()
toString
in class java.lang.Object