org.apache.shiro.web.mgt
Class DefaultWebSubjectFactory
java.lang.Object
org.apache.shiro.mgt.DefaultSubjectFactory
org.apache.shiro.web.mgt.DefaultWebSubjectFactory
- All Implemented Interfaces:
- SubjectFactory
- Direct Known Subclasses:
- CasSubjectFactory
public class DefaultWebSubjectFactory
- extends DefaultSubjectFactory
A SubjectFactory implementation that creates WebDelegatingSubject instances.
WebDelegatingSubject instances are required if Request/Response objects are to be maintained across
threads when using the Subject createCallable
and createRunnable methods.
- Since:
- 1.0
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultWebSubjectFactory
public DefaultWebSubjectFactory()
createSubject
public Subject createSubject(SubjectContext context)
- Description copied from interface:
SubjectFactory
- Creates a new Subject instance reflecting the state of the specified contextual data. The data would be
anything required to required to construct a
Subject instance and its contents can vary based on
environment.
Any data supported by Shiro core will be accessible by one of the SubjectContext's get*
or resolve* methods. All other data is available as map attributes.
- Specified by:
createSubject in interface SubjectFactory- Overrides:
createSubject in class DefaultSubjectFactory
- Parameters:
context - the contextual data to be used by the implementation to construct an appropriate Subject
instance.
- Returns:
- a
Subject instance created based on the specified context. - See Also:
SubjectContext
newSubjectInstance
@Deprecated
protected Subject newSubjectInstance(PrincipalCollection principals,
boolean authenticated,
String host,
Session session,
ServletRequest request,
ServletResponse response,
SecurityManager securityManager)
- Deprecated. since 1.2 - override
createSubject(org.apache.shiro.subject.SubjectContext) directly if you
need to instantiate a custom Subject class.
Copyright © 2004-2014 The Apache Software Foundation. All Rights Reserved.