Uses of Class
dev.getelements.elements.sdk.model.reward.RewardIssuance
Packages that use RewardIssuance
Package
Description
-
Uses of RewardIssuance in dev.getelements.elements.dao.mongo
Methods in dev.getelements.elements.dao.mongo that return RewardIssuanceModifier and TypeMethodDescriptionMongoRewardIssuanceDao.getOrCreateRewardIssuance
(RewardIssuance rewardIssuance) MongoRewardIssuanceDao.getRewardIssuance
(User user, String context) MongoRewardIssuanceDao.getRewardIssuance
(String id) MongoRewardIssuanceDao.updateExpirationTimestamp
(RewardIssuance rewardIssuance, long expirationTimestamp) Methods in dev.getelements.elements.dao.mongo that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionMongoRewardIssuanceDao.getRewardIssuances
(User user, int offset, int count, List<RewardIssuance.State> states, List<String> tags) Methods in dev.getelements.elements.dao.mongo with parameters of type RewardIssuanceModifier and TypeMethodDescriptionMongoRewardIssuanceDao.getOrCreateRewardIssuance
(RewardIssuance rewardIssuance) MongoRewardIssuanceDao.redeem
(RewardIssuance rewardIssuance) MongoRewardIssuanceDao.updateExpirationTimestamp
(RewardIssuance rewardIssuance, long expirationTimestamp) -
Uses of RewardIssuance in dev.getelements.elements.dao.mongo.mapper
Methods in dev.getelements.elements.dao.mongo.mapper that return RewardIssuanceModifier and TypeMethodDescriptionMongoDBMapper.toRewardIssuance
(MongoRewardIssuance source) MongoDBMapperImpl.toRewardIssuance
(MongoRewardIssuance source) Methods in dev.getelements.elements.dao.mongo.mapper that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionprotected List
<RewardIssuance> MongoDBMapperImpl.mongoRewardIssuanceListToRewardIssuanceList
(List<MongoRewardIssuance> list) Methods in dev.getelements.elements.dao.mongo.mapper with parameters of type RewardIssuanceModifier and TypeMethodDescriptionMongoDBMapper.toMongoRewardIssuance
(RewardIssuance source) MongoDBMapperImpl.toMongoRewardIssuance
(RewardIssuance source) Method parameters in dev.getelements.elements.dao.mongo.mapper with type arguments of type RewardIssuanceModifier and TypeMethodDescriptionprotected List
<MongoRewardIssuance> MongoDBMapperImpl.rewardIssuanceListToMongoRewardIssuanceList
(List<RewardIssuance> list) -
Uses of RewardIssuance in dev.getelements.elements.rest.apple
Methods in dev.getelements.elements.rest.apple that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionAppleIapReceiptResource.uploadAppleIapReceipt
(CreateAppleIapReceipt createAppleIapReceipt) -
Uses of RewardIssuance in dev.getelements.elements.rest.google
Methods in dev.getelements.elements.rest.google that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionGooglePlayIapReceiptResource.uploadGooglePlayIapPurchase
(CreateGooglePlayIapReceipt createGooglePlayIapReceipt) -
Uses of RewardIssuance in dev.getelements.elements.rest.mission
Methods in dev.getelements.elements.rest.mission that return RewardIssuanceModifier and TypeMethodDescriptionRewardIssuanceResource.getRewardIssuance
(String rewardIssuanceId) Methods in dev.getelements.elements.rest.mission that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionRewardIssuanceResource.getRewardIssuances
(int offset, int count, List<RewardIssuance.State> states, List<String> tags) -
Uses of RewardIssuance in dev.getelements.elements.sdk.dao
Methods in dev.getelements.elements.sdk.dao that return RewardIssuanceModifier and TypeMethodDescriptionRewardIssuanceDao.getOrCreateRewardIssuance
(RewardIssuance rewardIssuance) Gets or creates an instance ofRewardIssuance
.RewardIssuanceDao.getRewardIssuance
(User user, String context) Fetches the reward issuance for the given user and context.RewardIssuanceDao.getRewardIssuance
(String id) Fetches the instance ofRewardIssuance
.RewardIssuanceDao.updateExpirationTimestamp
(RewardIssuance rewardIssuance, long expirationTimestamp) Updates the given issuance to a new expiration timestamp.Methods in dev.getelements.elements.sdk.dao that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptiondefault Pagination
<RewardIssuance> RewardIssuanceDao.getRewardIssuances
(User user, int offset, int count) Gets all reward issuances for a given user.RewardIssuanceDao.getRewardIssuances
(User user, int offset, int count, List<RewardIssuance.State> states, List<String> tags) Gets all reward issuances for the given user, optionally specifying the allowableRewardIssuance.State
s and/or .Methods in dev.getelements.elements.sdk.dao with parameters of type RewardIssuanceModifier and TypeMethodDescriptionRewardIssuanceDao.getOrCreateRewardIssuance
(RewardIssuance rewardIssuance) Gets or creates an instance ofRewardIssuance
.RewardIssuanceDao.redeem
(RewardIssuance rewardIssuance) Redeems theRewardIssuance
.RewardIssuanceDao.updateExpirationTimestamp
(RewardIssuance rewardIssuance, long expirationTimestamp) Updates the given issuance to a new expiration timestamp. -
Uses of RewardIssuance in dev.getelements.elements.sdk.model.mission
Methods in dev.getelements.elements.sdk.model.mission that return types with arguments of type RewardIssuanceMethod parameters in dev.getelements.elements.sdk.model.mission with type arguments of type RewardIssuanceModifier and TypeMethodDescriptionvoid
Progress.setRewardIssuances
(List<RewardIssuance> rewardIssuances) -
Uses of RewardIssuance in dev.getelements.elements.sdk.model.reward
Methods in dev.getelements.elements.sdk.model.reward that return RewardIssuanceMethods in dev.getelements.elements.sdk.model.reward with parameters of type RewardIssuanceModifier and TypeMethodDescriptionvoid
RewardIssuanceRedemptionResult.setRewardIssuance
(RewardIssuance rewardIssuance) -
Uses of RewardIssuance in dev.getelements.elements.sdk.service.appleiap
Methods in dev.getelements.elements.sdk.service.appleiap that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionAppleIapReceiptService.getOrCreateRewardIssuances
(List<AppleIapReceipt> appleIapReceipts) Gets or creates aRewardIssuance
in the db for each givenAppleIapReceipt
. -
Uses of RewardIssuance in dev.getelements.elements.sdk.service.googleplayiap
Methods in dev.getelements.elements.sdk.service.googleplayiap that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionGooglePlayIapReceiptService.getOrCreateRewardIssuances
(GooglePlayIapReceipt googlePlayIapReceipt) Gets or creates a list ofRewardIssuance
s in the db for the givenGooglePlayIapReceipt
. -
Uses of RewardIssuance in dev.getelements.elements.sdk.service.rewardissuance
Methods in dev.getelements.elements.sdk.service.rewardissuance that return RewardIssuanceModifier and TypeMethodDescriptionRewardIssuanceService.getRewardIssuance
(String id) Fetches the instance ofRewardIssuance
for the given .Methods in dev.getelements.elements.sdk.service.rewardissuance that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionRewardIssuanceService.getRewardIssuances
(int offset, int count, List<RewardIssuance.State> states, List<String> tags) Fetches allRewardIssuance
s for the logged-in user, filtered by the optional given and . -
Uses of RewardIssuance in dev.getelements.elements.service.appleiap
Methods in dev.getelements.elements.service.appleiap that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionUserAppleIapReceiptService.getOrCreateRewardIssuances
(List<AppleIapReceipt> appleIapReceipts) -
Uses of RewardIssuance in dev.getelements.elements.service.googleplayiap
Methods in dev.getelements.elements.service.googleplayiap that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionUserGooglePlayIapReceiptService.getOrCreateRewardIssuances
(GooglePlayIapReceipt googlePlayIapReceipt) -
Uses of RewardIssuance in dev.getelements.elements.service.rewardissuance
Methods in dev.getelements.elements.service.rewardissuance that return RewardIssuanceMethods in dev.getelements.elements.service.rewardissuance that return types with arguments of type RewardIssuanceModifier and TypeMethodDescriptionUserRewardIssuanceService.getRewardIssuances
(int offset, int count, List<RewardIssuance.State> states, List<String> tags)