|
Jive Forums API (5.5.20.2-oracle) Developer Javadocs | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AuthToken | |
---|---|
com.jivesoftware.base | Base APIs and classes for Jive Software products. |
com.jivesoftware.base.action | Base WebWork actions for Jive Software products. |
com.jivesoftware.base.action.interceptor | XWork interceptors for Jive Software products. |
com.jivesoftware.base.action.rss | Base RSS helper actions. |
com.jivesoftware.base.admin | Utility classes for the admin console. |
com.jivesoftware.base.database | DB implementation of base interfaces and APIs. |
com.jivesoftware.base.ext | Extension implementations of the core APIs. |
com.jivesoftware.base.ldap | LDAP user and auth implementations. |
com.jivesoftware.base.stats | Core reporting engine classes and interfaces. |
com.jivesoftware.forum | Core interfaces and classes for Jive Forums. |
com.jivesoftware.forum.action | Jive Forums WebWork actions. |
com.jivesoftware.forum.action.rss | Jive Forums WebWork RSS actions. |
com.jivesoftware.forum.ban | |
com.jivesoftware.forum.database | DB implementation of core Jive Forums interfaces. |
com.jivesoftware.forum.gateway | Synchronizes Jive Forums data with external data sources such as NNTP servers. |
com.jivesoftware.forum.interceptor | Filters and rejects content being added to the system. |
com.jivesoftware.forum.mail | |
com.jivesoftware.forum.moderation | |
com.jivesoftware.forum.moderation.action | |
com.jivesoftware.forum.proxy | Protection proxies for Jive Forums objects. |
com.jivesoftware.forum.stats | Jive Forums reporting engine. |
com.jivesoftware.forum.util | Jive Forums utility classes. |
com.jivesoftware.forum.webservices.server | |
com.jivesoftware.forum.webservices.server.xfire |
Uses of AuthToken in com.jivesoftware.base |
---|
Methods in com.jivesoftware.base that return AuthToken | |
---|---|
protected abstract AuthToken |
AuthFactory.createAnonymousAuthToken()
Creates anonymous AuthToken tokens. |
protected AuthToken |
AuthFactory.createAuthToken(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Creates AuthToken tokens based on information from servlet request and response objects. |
protected abstract AuthToken |
AuthFactory.createAuthToken(java.lang.String username,
java.lang.String password)
Creates AuthToken tokens for users. |
protected AuthToken |
AuthFactory.createSessionUserInfo(java.lang.String username,
java.lang.String password,
boolean autoLogin,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Concrete subclasses may wish to override this method to create session info as appropriate. |
static AuthToken |
AuthFactory.getAnonymousAuthToken()
Returns an anonymous user AuthToken. |
static AuthToken |
AuthFactory.getAuthToken(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Returns the AuthToken token associated with the information in a servlet request and response object. |
static AuthToken |
AuthFactory.getAuthToken(java.lang.String username,
java.lang.String password)
Returns the AuthToken token associated with the specified username and password. |
static AuthToken |
AuthFactory.loginUser(java.lang.String username,
java.lang.String password,
boolean autoLogin,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
This method is a method for logging a user in and creating the appropriate session variables and/or cookies to keep state. |
Methods in com.jivesoftware.base with parameters of type AuthToken | |
---|---|
protected void |
AuthFactory.checkAuthorization(AuthToken authToken,
javax.servlet.http.HttpServletRequest request)
Checks if the specified AuthToken is authorized. |
static void |
AuthFactory.checkIfBanned(AuthToken authToken,
javax.servlet.http.HttpServletRequest request)
This will check to see if user is banned. |
java.lang.Object |
ProxyFactory.createProxy(java.lang.Object obj,
AuthToken auth,
Permissions perms)
Creates a new proxy for obj using the specified authToken and permissions, or returns null if the user doesn't have permission to read the object. |
Permissions |
Group.getPermissions(AuthToken authToken)
Returns the permissions for the group that correspond to the passed-in AuthToken. |
Permissions |
GroupAdapter.getPermissions(AuthToken authToken)
|
Permissions |
GroupProxy.getPermissions(AuthToken authToken)
|
Permissions |
MockGroup.getPermissions(AuthToken authToken)
|
Permissions |
MockUser.getPermissions(AuthToken authToken)
|
Permissions |
User.getPermissions(AuthToken authToken)
Returns the permissions for the user that correspond to the passed-in AuthToken. |
Permissions |
UserProxy.getPermissions(AuthToken authToken)
|
Constructors in com.jivesoftware.base with parameters of type AuthToken | |
---|---|
GroupIteratorProxy(java.util.Iterator iterator,
AuthToken auth,
Permissions permissions)
Creates a new group iterator proxy. |
|
GroupManagerProxy(GroupManager groupManager,
AuthToken auth,
Permissions permissions)
Creates a new GroupManagerProxy. |
|
GroupProxy(Group group,
AuthToken authToken,
Permissions permissions)
|
|
PresenceManagerProxy(PresenceManager manager,
AuthToken authToken,
Permissions permissions)
|
|
PresenceProxy(Presence presence,
AuthToken authToken,
Permissions permissions)
|
|
RosterProxy(Roster roster,
AuthToken authToken,
Permissions permissions)
|
|
UserGroupIteratorProxy(int type,
java.util.Iterator iterator,
AuthToken auth,
Permissions permissions)
Creates a new iterator proxy. |
|
UserIteratorProxy(java.util.Iterator iterator,
AuthToken auth,
Permissions permissions)
Creates a new user iterator proxy. |
|
UserManagerProxy(UserManager userManager,
AuthToken auth,
Permissions permissions)
Creates a new UserManagerProxy. |
|
UserProxy(User user,
AuthToken authToken,
Permissions permissions)
Create a new UserProxy. |
Uses of AuthToken in com.jivesoftware.base.action |
---|
Methods in com.jivesoftware.base.action that return AuthToken | |
---|---|
AuthToken |
JiveActionSupport.getAuthToken()
|
AuthToken |
LogoutAction.getAuthToken()
|
Methods in com.jivesoftware.base.action with parameters of type AuthToken | |
---|---|
void |
AuthTokenAware.setAuthToken(AuthToken authToken)
|
void |
JiveActionSupport.setAuthToken(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.base.action.interceptor |
---|
Methods in com.jivesoftware.base.action.interceptor that return AuthToken | |
---|---|
protected AuthToken |
AdminAuthInterceptor.getAuthToken(com.opensymphony.xwork.ActionInvocation ai)
|
protected AuthToken |
AuthInterceptor.getAuthToken(com.opensymphony.xwork.ActionInvocation ai)
Returns the AuthToken of the page user. |
Methods in com.jivesoftware.base.action.interceptor with parameters of type AuthToken | |
---|---|
protected UserManager |
AdminAuthInterceptor.getUserManager(AuthToken authToken)
|
protected abstract UserManager |
AuthInterceptor.getUserManager(AuthToken authToken)
Returns a UserManager given an authToken. |
protected void |
AuthInterceptor.processAwareInterfaces(com.opensymphony.xwork.ActionInvocation ai,
AuthToken authToken,
java.lang.Object action)
|
Uses of AuthToken in com.jivesoftware.base.action.rss |
---|
Methods in com.jivesoftware.base.action.rss that return AuthToken | |
---|---|
AuthToken |
RSSActionSupport.getAuthToken()
|
Methods in com.jivesoftware.base.action.rss with parameters of type AuthToken | |
---|---|
void |
RSSActionSupport.setAuthToken(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.base.admin |
---|
Constructors in com.jivesoftware.base.admin with parameters of type AuthToken | |
---|---|
JiveAdminRole(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.base.database |
---|
Classes in com.jivesoftware.base.database that implement AuthToken | |
---|---|
class |
DbAuthToken
Database implementation of the AuthToken interface. |
Methods in com.jivesoftware.base.database that return AuthToken | |
---|---|
AuthToken |
DbAuthFactory.createAnonymousAuthToken()
Creates anonymous AuthToken tokens. |
AuthToken |
DbAuthFactory.createAuthToken(java.lang.String username,
java.lang.String password)
Creates AuthToken tokens for users. |
Methods in com.jivesoftware.base.database with parameters of type AuthToken | |
---|---|
Permissions |
DbGroup.getPermissions(AuthToken auth)
|
Permissions |
DbUser.getPermissions(AuthToken auth)
|
Uses of AuthToken in com.jivesoftware.base.ext |
---|
Methods in com.jivesoftware.base.ext with parameters of type AuthToken | |
---|---|
Permissions |
SimpleUserAdapter.getPermissions(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.base.ldap |
---|
Classes in com.jivesoftware.base.ldap that implement AuthToken | |
---|---|
class |
LdapAuthToken
LDAP AuthToken token implementation. |
Methods in com.jivesoftware.base.ldap that return AuthToken | |
---|---|
AuthToken |
LdapAuthFactory.createAnonymousAuthToken()
|
AuthToken |
LdapAuthFactory.createAuthToken(java.lang.String username,
java.lang.String password)
|
Methods in com.jivesoftware.base.ldap with parameters of type AuthToken | |
---|---|
Permissions |
LdapGroup.getPermissions(AuthToken auth)
|
Permissions |
LdapSearchGroup.getPermissions(AuthToken authToken)
|
Permissions |
LdapUser.getPermissions(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.base.stats |
---|
Fields in com.jivesoftware.base.stats declared as AuthToken | |
---|---|
protected AuthToken |
AbstractReportRunner.authToken
|
Methods in com.jivesoftware.base.stats that return AuthToken | |
---|---|
AuthToken |
AbstractReportRunner.getAuthToken()
|
Constructors in com.jivesoftware.base.stats with parameters of type AuthToken | |
---|---|
AbstractReportRunner(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.forum |
---|
Methods in com.jivesoftware.forum with parameters of type AuthToken | |
---|---|
static ForumFactory |
ForumFactory.getInstance(AuthToken authToken)
Returns a concrete ForumFactory instance. |
static QueryLogger |
QueryLoggerFactory.getInstance(AuthToken authToken)
Returns a concrete instance of the query logger interface wrapped by a protection proxy. |
static RatingManager |
RatingManagerFactory.getInstance(AuthToken authToken)
Returns a concrete instance of the rating manager interface wrapped by a protection proxy. |
Permissions |
Forum.getPermissions(AuthToken authToken)
Returns the permissions for the forum that correspond to the passed-in AuthToken. |
Permissions |
ForumCategory.getPermissions(AuthToken authToken)
Returns the permissions for the category that correspond to the passed-in AuthToken. |
abstract Permissions |
ForumFactory.getPermissions(AuthToken authToken)
Returns the permissions for the factory that correspond to the passed-in Authorization. |
void |
ForumMessage.setModerationValue(int value,
AuthToken authToken)
Sets the number of moderation points this message has. |
void |
ForumThread.setModerationValue(int value,
AuthToken authToken)
Sets the number of moderation points this thread has. |
Uses of AuthToken in com.jivesoftware.forum.action |
---|
Methods in com.jivesoftware.forum.action with parameters of type AuthToken | |
---|---|
protected UserManager |
ForumAuthInterceptor.getUserManager(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.forum.action.rss |
---|
Methods in com.jivesoftware.forum.action.rss that return AuthToken | |
---|---|
AuthToken |
RSSMainAction.getAnonymousAuthToken()
|
Uses of AuthToken in com.jivesoftware.forum.ban |
---|
Constructors in com.jivesoftware.forum.ban with parameters of type AuthToken | |
---|---|
BanManagerProxy(BanManager banManager,
AuthToken authToken,
Permissions permissions)
|
Uses of AuthToken in com.jivesoftware.forum.database |
---|
Methods in com.jivesoftware.forum.database with parameters of type AuthToken | |
---|---|
Permissions |
DbForum.getPermissions(AuthToken authToken)
|
Permissions |
DbForumCategory.getPermissions(AuthToken authToken)
|
Permissions |
DbForumFactory.getPermissions(AuthToken authToken)
|
void |
DbForumMessage.setModerationValue(int value,
AuthToken authToken)
|
void |
DbForumThread.setModerationValue(int value,
AuthToken authToken)
|
void |
EmailWatchMessageWrapper.setModerationValue(int value,
AuthToken authToken)
|
protected void |
DbForumMessage.setModValue(int value,
AuthToken authToken)
|
protected void |
DbForumThread.setModValue(int value,
AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.forum.gateway |
---|
Constructors in com.jivesoftware.forum.gateway with parameters of type AuthToken | |
---|---|
GatewayManagerProxy(GatewayManager gatewayManager,
AuthToken auth,
Permissions permissions)
|
Uses of AuthToken in com.jivesoftware.forum.interceptor |
---|
Methods in com.jivesoftware.forum.interceptor with parameters of type AuthToken | |
---|---|
protected UserManager |
ForumsAdminAuthInterceptor.getUserManager(AuthToken authToken)
Returns a UserManager using the supplied AuthToken . |
Uses of AuthToken in com.jivesoftware.forum.mail |
---|
Methods in com.jivesoftware.forum.mail with parameters of type AuthToken | |
---|---|
void |
EmailActionBuilder.setAuthToken(AuthToken authToken)
Sets the AuthToken of the user to act as. |
Constructors in com.jivesoftware.forum.mail with parameters of type AuthToken | |
---|---|
CreateThread(java.lang.String subject,
java.lang.String message,
long forumID,
java.util.Iterator attachments,
AuthToken authToken)
Sole constructor. |
|
ReplyToThread(java.lang.String subject,
java.lang.String message,
long messageID,
java.util.Iterator attachments,
AuthToken authToken)
Sole constructor. |
Uses of AuthToken in com.jivesoftware.forum.moderation |
---|
Methods in com.jivesoftware.forum.moderation with parameters of type AuthToken | |
---|---|
void |
ModerationManager.approve(AuthToken authToken,
ForumMessage message)
Approve a moderated message |
void |
ModerationManagerImpl.approve(AuthToken authToken,
ForumMessage message)
|
void |
ModerationManager.editAndApprove(AuthToken authToken,
ForumMessage message,
java.lang.String subject,
java.lang.String body)
Edit and approve a moderated message |
void |
ModerationManagerImpl.editAndApprove(AuthToken authToken,
ForumMessage message,
java.lang.String subject,
java.lang.String body)
|
java.util.List |
ModerationManager.getForums(AuthToken authToken)
This method will return a list of forums where the user is a moderator. |
java.util.List |
ModerationManagerImpl.getForums(AuthToken authToken)
|
int |
ModerationManager.getMessageCount(ModerationFilter modFilter,
AuthToken authToken)
Gets the number of moderated messages in the system |
int |
ModerationManagerImpl.getMessageCount(ModerationFilter modFilter,
AuthToken authToken)
|
java.util.List |
ModerationManager.getMessages(AuthToken authToken)
This method will return a list of messages where the user is a moderator. |
java.util.List |
ModerationManagerImpl.getMessages(AuthToken authToken)
|
ForumMessageIterator |
ModerationManager.getMessages(AuthToken authToken,
Forum forum)
Gets a list of moderated messages for a particular forum. |
ForumMessageIterator |
ModerationManagerImpl.getMessages(AuthToken authToken,
Forum forum)
|
java.util.List |
ModerationManager.getMessages(ModerationFilter modFilter,
AuthToken authToken)
This method will return a list of messages where the user is a moderator. |
java.util.List |
ModerationManagerImpl.getMessages(ModerationFilter modFilter,
AuthToken authToken)
|
ForumMessageIterator |
ModerationManager.getMessages(ModerationFilter modFilter,
AuthToken authToken,
Forum forum)
Gets a list of moderated messages for a particular forum. |
ForumMessageIterator |
ModerationManagerImpl.getMessages(ModerationFilter modFilter,
AuthToken authToken,
Forum forum)
|
void |
ModerationManager.reject(AuthToken authToken,
ForumMessage message)
Reject a moderated message |
void |
ModerationManagerImpl.reject(AuthToken authToken,
ForumMessage message)
|
Uses of AuthToken in com.jivesoftware.forum.moderation.action |
---|
Methods in com.jivesoftware.forum.moderation.action that return AuthToken | |
---|---|
AuthToken |
ViewModerateAction.getAuthToken()
|
Methods in com.jivesoftware.forum.moderation.action with parameters of type AuthToken | |
---|---|
void |
ViewModerateAction.setAuthToken(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.forum.proxy |
---|
Fields in com.jivesoftware.forum.proxy declared as AuthToken | |
---|---|
protected AuthToken |
ForumFactoryProxy.authToken
|
protected AuthToken |
RenderManagerProxy.authToken
|
protected AuthToken |
RewardManagerProxy.authToken
|
Methods in com.jivesoftware.forum.proxy that return AuthToken | |
---|---|
AuthToken |
RenderManagerProxy.getProxyAuthToken()
|
Methods in com.jivesoftware.forum.proxy with parameters of type AuthToken | |
---|---|
Permissions |
ForumCategoryProxy.getPermissions(AuthToken authToken)
|
Permissions |
ForumFactoryProxy.getPermissions(AuthToken authToken)
|
Permissions |
ForumProxy.getPermissions(AuthToken authToken)
|
void |
ForumMessageProxy.setModerationValue(int value,
AuthToken authToken)
|
void |
ForumThreadProxy.setModerationValue(int value,
AuthToken authToken)
|
Constructors in com.jivesoftware.forum.proxy with parameters of type AuthToken | |
---|---|
AnnouncementIteratorProxy(java.util.Iterator iterator,
AuthToken authToken,
Permissions permissions)
|
|
AnnouncementManagerProxy(AnnouncementManager manager,
AuthToken authToken,
Permissions permissions)
Creates a new AnnouncementManager to protect the supplied manager with the specified permissions. |
|
AnnouncementProxy(Announcement announcement,
AuthToken authToken,
Permissions permissions)
Creates a new AnnouncementManager to protect the supplied manager with the specified permissions. |
|
ArchiveManagerProxy(ArchiveManager archiveManager,
AuthToken authToken,
Permissions permissions)
|
|
AttachmentProxy(Attachment attachment,
ForumMessageProxy message,
AuthToken authToken,
Permissions permissions)
Creates a new AttachmentProxy to protect the supplied attachment with the specified permissions |
|
AvatarIteratorProxy(java.util.Iterator iterator,
AuthToken authToken,
Permissions permissions)
|
|
AvatarManagerProxy(AvatarManager avatarManager,
AuthToken authToken,
Permissions permissions)
|
|
AvatarProxy(Avatar avatar,
AuthToken authToken,
Permissions permissions)
|
|
DraftManagerProxy(DraftManager manager,
AuthToken authToken,
Permissions permissions)
Creates a new ForumMessageDraftManagerProxy object. |
|
ForumCategoryProxy(ForumCategory category,
AuthToken authToken,
Permissions permissions)
Creates a new ForumCategoryProxy object. |
|
ForumFactoryProxy(AuthToken authToken,
ForumFactory factory,
Permissions permissions)
|
|
ForumMessageIteratorProxy(ForumMessageIterator iterator,
AuthToken authToken,
Permissions permissions)
|
|
ForumMessageProxy(ForumMessage message,
AuthToken authToken,
Permissions permissions)
Creates a new ForumMessageProxy to protect the supplied message with the specified permissions |
|
ForumProxy(Forum forum,
AuthToken authToken,
Permissions permissions)
Creates a new ForumProxy object. |
|
ForumThreadIteratorProxy(ForumThreadIterator iterator,
AuthToken authToken,
Permissions permissions)
|
|
ForumThreadProxy(ForumThread thread,
AuthToken authToken,
Permissions permissions)
Creates a new proxy. |
|
IteratorProxy(int type,
java.util.Iterator iterator,
AuthToken authToken)
Creates a new iterator proxy. |
|
PollManagerProxy(PollManager manager,
AuthToken authToken,
Permissions permissions)
Creates a new PollManagerProxy object. |
|
PrivateMessageFolderProxy(PrivateMessageFolder folder,
AuthToken authToken)
Creates a new PrivateMessageFolderProxy to protect the supplied message with the specified permissions. |
|
PrivateMessageManagerProxy(PrivateMessageManager manager,
AuthToken authToken,
Permissions permissions)
Creates a new PrivateMessageManagerProxy to protect the supplied message with the specified permissions. |
|
QueryLoggerProxy(QueryLogger queryLogger,
AuthToken auth,
Permissions permissions)
Creates a new QueryLoggerProxy object. |
|
QueryManagerProxy(QueryManager queryManager,
AuthToken auth,
Permissions permissions)
Creates a new QueryManagerProxy object. |
|
QueryProxy(Query query,
AuthToken authToken)
|
|
QueryResultIteratorWrapper(java.util.Iterator iterator,
AuthToken authToken)
|
|
QueryResultIteratorWrapper(java.util.Iterator iterator,
AuthToken authToken,
int startIndex,
int numResults)
|
|
ReadTrackerProxy(ReadTracker readTracker,
AuthToken authToken,
Permissions permissions)
Creates a new ForumProxy object. |
|
RegistrationManagerProxy(RegistrationManager registrationManager,
AuthToken authToken,
Permissions permissions)
|
|
RewardManagerProxy(RewardManager rewardManager,
AuthToken authToken,
Permissions permissions)
|
|
StatusLevelIteratorProxy(java.util.Iterator iterator,
AuthToken authToken,
Permissions permissions)
|
|
StatusLevelManagerProxy(StatusLevelManager statusLevelManager,
AuthToken authToken,
Permissions permissions)
|
|
StatusLevelProxy(StatusLevel statusLevel,
AuthToken authToken,
Permissions permissions)
|
|
TreeWalkerProxy(TreeWalker treeWalker,
AuthToken authToken,
Permissions permissions)
|
|
WatchManagerProxy(WatchManager manager,
AuthToken authToken,
Permissions permissions)
Creates a new WatchManagerProxy object. |
|
WatchSettingsManagerProxy(WatchSettingsManager manager,
AuthToken authToken,
Permissions permissions)
Creates a new WatchSettingsManagerProxy object. |
Uses of AuthToken in com.jivesoftware.forum.stats |
---|
Constructors in com.jivesoftware.forum.stats with parameters of type AuthToken | |
---|---|
ForumsReportRunner(AuthToken authToken)
|
Uses of AuthToken in com.jivesoftware.forum.util |
---|
Methods in com.jivesoftware.forum.util with parameters of type AuthToken | |
---|---|
protected ForumFactory |
JiveServlet.getForumFactory(AuthToken authToken,
long forumID,
long threadID,
long messageID)
|
Uses of AuthToken in com.jivesoftware.forum.webservices.server |
---|
Methods in com.jivesoftware.forum.webservices.server that return AuthToken | |
---|---|
static AuthToken |
WSUtil.getAuthToken()
Returns the current thread's AuthToken . |
Methods in com.jivesoftware.forum.webservices.server with parameters of type AuthToken | |
---|---|
static void |
WSUtil.setAuthToken(AuthToken token)
Used to set the authtoken on a thread local variable. |
Uses of AuthToken in com.jivesoftware.forum.webservices.server.xfire |
---|
Methods in com.jivesoftware.forum.webservices.server.xfire that return AuthToken | |
---|---|
protected AuthToken |
PermissionHandler.acquireAuthToken(org.apache.ws.security.WSUsernameTokenPrincipal principal)
|
|
Jive Forums Project Page | |||||||||
PREV NEXT | FRAMES NO FRAMES |