
br.com.jhonsapp.finaluser.service.RoleGroupService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of final-user Show documentation
Show all versions of final-user Show documentation
A bunch of classes that help developers building login and authentication.
The newest version!
package br.com.jhonsapp.finaluser.service;
import java.util.List;
import javax.ejb.Remote;
import br.com.jhonsapp.bootstrap.object.service.generic.Service;
import br.com.jhonsapp.finaluser.domain.RoleGroup;
/**
* This interface describes the methods that all roleGroup service classes, from the
* same project, should have.
*
* @param
* Type of the object to be manipulated by the class.
*
* @see Service
*
* @author Jhonathan Camacho
*
*/
@Remote
public interface RoleGroupService extends Service {
/**
* Find all persisted roleGroup.
*
* @return a list with all roleGroups persisted in the database.
*/
public List findAll();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy