Package com.avoka.fc.core.bean
Class SubmissionSummaryBean
- java.lang.Object
-
- com.avoka.fc.core.bean.SubmissionSummaryBean
-
public class SubmissionSummaryBean extends Object
Provides a bean for submission summary counts. This bean is used on the TransactionTrend page.- Since:
- 4.1.0
-
-
Field Summary
Fields Modifier and Type Field Description int
requestCount
The number of form request operationsint
saveCount
The number of online save operationsint
submitCount
The number of submit operations
-
Constructor Summary
Constructors Constructor Description SubmissionSummaryBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getRequestCount()
Return the number of form request operationsint
getSaveCount()
Return the number of save operationsInteger
getSavePercent()
Return the percentage of save operationsint
getSubmitCount()
Return the number of submit operationsInteger
getSubmitPercent()
Return the percentage of submit operations
-
-
-
Method Detail
-
getRequestCount
public int getRequestCount()
Return the number of form request operations- Returns:
- the number of form request operations
-
getSaveCount
public int getSaveCount()
Return the number of save operations- Returns:
- the number of save operations
-
getSavePercent
public Integer getSavePercent()
Return the percentage of save operations- Returns:
- the percentage of save operations
-
getSubmitCount
public int getSubmitCount()
Return the number of submit operations- Returns:
- the number of submit operations
-
getSubmitPercent
public Integer getSubmitPercent()
Return the percentage of submit operations- Returns:
- the percentage of submit operations
-
-