com.jgcomptech.tools.authz.AuthorizationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-ultimate-tools Show documentation
Show all versions of java-ultimate-tools Show documentation
A large repository of scripts for use in any Java program.
package com.jgcomptech.tools.authz;
import java.io.Serializable;
import java.util.Collection;
/**
* Interface used for objects that contain Authorization info.
* @since 1.5.0
*/
public interface AuthorizationInfo extends Serializable {
Collection getRoles();
// Collection getStringPermissions();
// Collection getObjectPermissions();
}