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