net.anotheria.portalkit.services.subscription.generated.RemoteSubscriptionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pk-services-subscriptionservice Show documentation
Show all versions of pk-services-subscriptionservice Show documentation
Subscription service manages subscriptions of the user
package net.anotheria.portalkit.services.subscription.generated;
//BEGIN GENERATED CODE
import java.rmi.Remote;
import java.rmi.RemoteException;
import org.distributeme.core.lifecycle.ServiceAdapter;
import java.util.List;
import java.util.Map;
public interface RemoteSubscriptionService extends Remote, ServiceAdapter{
List getActiveSubscriptionForAccount(net.anotheria.portalkit.services.common.AccountId accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getSubscriptionForAccount(net.anotheria.portalkit.services.common.AccountId accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getSubscriptions(Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List deleteSubscriptions(net.anotheria.portalkit.services.common.AccountId accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List deleteTransactions(net.anotheria.portalkit.services.common.AccountId accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getTransactions(Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List addSubscription(net.anotheria.portalkit.services.subscription.Subscription subscription, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List updateSubscription(net.anotheria.portalkit.services.subscription.Subscription subscription, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List addTransaction(net.anotheria.portalkit.services.subscription.Transaction transaction, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List addTransactionLogEntry(net.anotheria.portalkit.services.subscription.TransactionLogEntry toAdd, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getTransactionLogEntries(net.anotheria.portalkit.services.common.AccountId owner, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getTransactionLogEntries(Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getTransactionLogEntriesByMessageMask(java.lang.String messageMask, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List deleteTransactionLogs(net.anotheria.portalkit.services.common.AccountId accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List saveCancellation(net.anotheria.portalkit.services.subscription.Cancellation cancellation, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List deleteCancellation(java.lang.String accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getCancellationById(java.lang.String accountId, Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
List getCancellations(Map,?> __transportableCallContext) throws net.anotheria.portalkit.services.subscription.SubscriptionServiceException, RemoteException;
}
//END GENERATED CODE