Uses of Interface
com.appliedolap.essbase.EssAuthentication
Packages that use EssAuthentication
Package
Description
The classes in this package model client API that works with the Essbase REST API.
Implementations of the public API interfaces declared in
com.appliedolap.essbase, backed
by the generated REST client in com.appliedolap.essbase.client.-
Uses of EssAuthentication in com.appliedolap.essbase
Methods in com.appliedolap.essbase that return EssAuthenticationModifier and TypeMethodDescriptionstatic EssAuthenticationUsername and password on every request, with no session.static EssAuthenticationEssAuthentication.bearerToken(String token) A bearer token, sent asAuthorization: Bearer <token>.ApiContext.getAuthentication()The authentication strategy in use, or null when the context was built without one.EssServer.getAuthentication()How this connection authenticates, so that code outside the generated client can present the same identity - a download bypass, or a local proxy standing in front of the server's own web pages.static EssAuthenticationUsername and password until the server returns a session, then the session thereafter.static EssAuthenticationEssAuthentication.sessionCookie(String sessionId, String weblogicAuthCookie) An existing session, presented as cookies, with no username or password anywhere.Constructors in com.appliedolap.essbase with parameters of type EssAuthenticationModifierConstructorDescriptionApiClientFactory(String path, EssAuthentication authentication) Builds clients that authenticate however the given strategy says to, which need not involve a username and password at all - seeEssAuthentication.ApiContext(com.appliedolap.essbase.client.ApiClient client, EssAuthentication authentication) -
Uses of EssAuthentication in com.appliedolap.essbase.impl
Classes in com.appliedolap.essbase.impl that implement EssAuthenticationModifier and TypeClassDescriptionclassHTTP Basic on every request, never establishing a session.classAn OAuth-style bearer token.classUsername and password until the server hands back a session, then the session from then on.classAn already-established session, presented as cookies.Methods in com.appliedolap.essbase.impl that return EssAuthenticationConstructors in com.appliedolap.essbase.impl with parameters of type EssAuthenticationModifierConstructorDescriptionEssServerImpl(String server, EssAuthentication authentication) Connects using the given authentication strategy, which need not be a username and password - seeEssAuthentication.