Example usage for org.apache.shiro.subject.support SubjectCallable SubjectCallable

List of usage examples for org.apache.shiro.subject.support SubjectCallable SubjectCallable

Introduction

In this page you can find the example usage for org.apache.shiro.subject.support SubjectCallable SubjectCallable.

Prototype

protected SubjectCallable(ThreadState threadState, Callable<V> delegate) 

Source Link

Usage

From source file:org.sonatype.nexus.security.subject.FakeAlmightySubject.java

License:Open Source License

@Override
public <V> Callable<V> associateWith(final Callable<V> callable) {
    return new SubjectCallable<V>(this, callable);
}