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

org.eweb4j.solidbase.permission.model.PermissionService Maven / Gradle / Ivy

The newest version!
package org.eweb4j.solidbase.permission.model;

import java.util.List;

import org.eweb4j.mvc.view.EditPage;
import org.eweb4j.mvc.view.PageMod;

public interface PermissionService {

	void addPermission(Permission permission) throws Exception;

	PageMod getPage(int pageNum, int numPerPage) throws Exception;

	EditPage getEditPage(long permId) throws Exception;

	void remove(long permId) throws Exception;

	void batchRemove(long[] permIds) throws Exception;

	void update(Permission permission) throws Exception;

	Permission findByURIAndHttpMethod(String uri, String httpMethod)
			throws Exception;

	List findByTypeId(long permTypeId) throws Exception;

	List assemPermissionMod()
			throws Exception;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy