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

com.github.tomschi.commons.springdatajpa.service.JpaService Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package com.github.tomschi.commons.springdatajpa.service;

import com.github.tomschi.commons.data.dbo.DatabaseObject;
import com.github.tomschi.commons.springdata.service.SortingAndPagingService;

import java.io.Serializable;

/**
 * The base interface for a jpa based service. It implements crud operations
 * for the given {@link DatabaseObject}.
 *
 * @param  The type of the {@link DatabaseObject}.
 * @param  The type of the id of the {@link DatabaseObject}.
 *
 * @author Tomschi
 * @since 0.1.2
 */
public interface JpaService, ID extends Serializable> extends SortingAndPagingService {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy