accounting-manager/src/main/java/org/gcube/portlets/admin/accountingmanager/server/amservice/command/AccountingCommand.java

17 lines
369 B
Java

package org.gcube.portlets.admin.accountingmanager.server.amservice.command;
import org.gcube.portlets.admin.accountingmanager.shared.exception.ServiceException;
/**
*
* @author Giancarlo Panichi
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public interface AccountingCommand<T> {
T execute() throws ServiceException;
}