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

org.devocative.demeter.iservice.ISecurityService Maven / Gradle / Ivy

The newest version!
package org.devocative.demeter.iservice;

import org.devocative.demeter.vo.UserVO;

import java.util.List;
import java.util.Map;

public interface ISecurityService {
	UserVO getCurrentUser();

	void authenticate(UserVO userVO);

	void authenticate(String username, String password);

	UserVO authenticateByUrlParams(Map> params);

	void signOut();

	//String getUserDigest(String username);

	UserVO getSystemUser();

	UserVO getGuestUser();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy