com.payneteasy.superfly.client.ActionDescriptionCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-client Show documentation
Show all versions of superfly-client Show documentation
Contains classes used to use Superfly facilities by clients
package com.payneteasy.superfly.client;
import java.util.List;
import com.payneteasy.superfly.api.ActionDescription;
import com.payneteasy.superfly.client.exception.CollectionException;
/**
* Collects and returns action descriptions.
*
* @author Roman Puchkovskiy
*/
public interface ActionDescriptionCollector {
/**
* Returns action descriptions.
*
* @return action descriptions
* @throws CollectionException
*/
List collect() throws CollectionException;
}