com.jgcomptech.tools.authc.Account 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.authc;
import com.jgcomptech.tools.authz.AuthorizationInfo;
/**
* Interface used for account objects that combines authentication info and authorization info.
* @since 1.5.0
*/
public interface Account extends AuthenticationInfo, AuthorizationInfo { }