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

br.com.jhonsapp.finaluser.service.RoleGroupService Maven / Gradle / Ivy

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