Uses of Class
com.avoka.fc.core.entity.PromotionLog
-
Packages that use PromotionLog Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne. -
-
Uses of PromotionLog in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return PromotionLog Modifier and Type Method Description PromotionLog
PromotionDao. getPromotionLogForPK(Object id)
Return the promotion log with the specified OIDMethods in com.avoka.fc.core.dao that return types with arguments of type PromotionLog Modifier and Type Method Description List<PromotionLog>
PromotionDao. getPromotionList(Client client, Form form, TemplateVersion version, boolean showHistory)
Return the list of promotion log records matching the specified search criteria, ordered by creation time.List<PromotionLog>
PromotionDao. getPromotionList(Form form)
Return the list of current form promotion log records.List<PromotionLog>
PromotionDao. getPromotionList(String clientId, String keyword, String promotionStatus, boolean showHistory, Date startDate, Date endDate)
Return the list of promotion log entries matching the specified search criteria, ordered by creation time. -
Uses of PromotionLog in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type PromotionLog Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<PromotionLog>>
_Form. PROMOTION
Provides the 'PROMOTION' property.static org.apache.cayenne.exp.Property<List<PromotionLog>>
_Client. PROMOTION_LOG
Provides the 'PROMOTION_LOG' property.static org.apache.cayenne.exp.Property<List<PromotionLog>>
_UserAccount. PROMOTION_LOG
Provides the 'PROMOTION_LOG' property.static org.apache.cayenne.exp.Property<List<PromotionLog>>
_TemplateVersion. PROMOTION_LOGS
Provides the 'PROMOTION_LOGS' property.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type PromotionLog Modifier and Type Method Description List<PromotionLog>
_Form. getPromotion()
Return the Promotion.List<PromotionLog>
_Client. getPromotionLog()
Return the PromotionLog.List<PromotionLog>
_UserAccount. getPromotionLog()
Return the PromotionLog.List<PromotionLog>
_TemplateVersion. getPromotionLogs()
Return the PromotionLogs.Methods in com.avoka.fc.core.entity.auto with parameters of type PromotionLog Modifier and Type Method Description void
_Form. addToPromotion(PromotionLog obj)
Add the Promotion object.void
_Client. addToPromotionLog(PromotionLog obj)
Add the PromotionLog object.void
_UserAccount. addToPromotionLog(PromotionLog obj)
Add the PromotionLog object.void
_TemplateVersion. addToPromotionLogs(PromotionLog obj)
Add the PromotionLogs object.void
_Form. removeFromPromotion(PromotionLog obj)
Remove the Promotion object.void
_Client. removeFromPromotionLog(PromotionLog obj)
Remove the PromotionLog object.void
_UserAccount. removeFromPromotionLog(PromotionLog obj)
Remove the PromotionLog object.void
_TemplateVersion. removeFromPromotionLogs(PromotionLog obj)
Remove the PromotionLogs object.
-