All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.restup.service.MethodCommandOperationFactory Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.restup.service;

/**
 * Provides operation specific {@link MethodCommand}s
 */
public interface MethodCommandOperationFactory {

    MethodCommand getCreateOperation();

    MethodCommand getUpdateOperation();

    MethodCommand getDeleteOperation();

    MethodCommand getBulkUpdateOperation();

    MethodCommand getBulkCreateOperation();

    MethodCommand getBulkDeleteOperation();

    MethodCommand getDeleteByQueryOperation();

    MethodCommand getUpdateByQueryOperation();

    MethodCommand getListOperation();

    MethodCommand getFindOperation();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy