![JAR search and dependency download from the Maven repository](/logo.png)
com.evasion.IModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion;
import com.evasion.exception.EvasionException;
import java.security.Principal;
import java.util.Collection;
import java.util.Date;
/**
*
* @author sglon
*/
public interface IModule {
void refreshModuleProperties();
void registerModule();
Collection getModuleProperties();
void setModuleProperty(String key, Object value);
String getModuleProperty(String key);
String getPrinciaplUserName() throws EvasionException;
Object getPrincipalProperty(String property) throws EvasionException;
Date getUserLastLogin() throws EvasionException;
Principal getPrincipal() throws EvasionException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy