/* * Generated by Robotoworks Mechanoid */ package com.robotoworks.example.movies.ops; import com.robotoworks.mechanoid.ops.Operation; import com.robotoworks.mechanoid.ops.OperationService; import com.robotoworks.mechanoid.ops.OperationProcessor; public abstract class AbstractMoviesProcessor extends OperationProcessor { @Override protected Operation createOperation(String action) { return MoviesService.CONFIG .getOperationConfigurationRegistry() .getOperationConfiguration(action) .createOperation(); } public AbstractMoviesProcessor(OperationService service, boolean enableLogging) { super(service, enableLogging); } }