graphenej/graphenej/src/main/java/de/bitsharesmunich/graphenej/operations/BaseOperationBuilder.java

18 lines
443 B
Java

package de.bitsharesmunich.graphenej.operations;
import de.bitsharesmunich.graphenej.BaseOperation;
/**
* Base template for all operation-specific factory classes.
*/
public abstract class BaseOperationBuilder {
/**
* Must be implemented and return the specific operation the
* factory is supposed to build.
*
* @return: A usable instance of a given operation.
*/
public abstract BaseOperation build();
}