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

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

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

/**
 * Resource service operations which wrap annotated service methods with flexible signatures
 */
public interface ResourceServiceOperations {

    Object create(Object... args);

    Object update(Object... args);

    Object delete(Object... args);

    Object bulkCreate(Object... args);

    Object bulkUpdate(Object... args);

    Object bulkDelete(Object... args);

    Object updateByQueryCriteria(Object... args);

    Object deleteByQueryCriteria(Object... args);

    Object list(Object... args);

    Object find(Object... args);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy