com.jdroid.javaweb.context.SecurityContextHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-webapp Show documentation
Show all versions of jdroid-java-webapp Show documentation
Jdroid library for Java Web apps
The newest version!
package com.jdroid.javaweb.context;
import com.jdroid.java.domain.Entity;
/**
* Provides access to the {@link AbstractSecurityContext}
*
* @param
*/
public abstract class SecurityContextHolder {
/**
* @return The {@link AbstractSecurityContext} instance
*/
public abstract AbstractSecurityContext getContext();
}