Package de.narimo.commons.ws.http.auth
Interface HTTPBasicAuthorizationFactoryInterface
-
- All Known Subinterfaces:
HTTPAuthorizationFactoryInterface
- All Known Implementing Classes:
HTTPAuthorizationFactory,HTTPBasicAuthorizationFactory
public interface HTTPBasicAuthorizationFactoryInterfaceCommon authorization object interface which can be used to hold authorization details. Can be used for different types of authentication such as Basic Authentication or Cookie Authentication.- Author:
- Ulrich Mann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description de.narimo.commons.UserCredentialsgetCredentials()javax.ws.rs.core.Cookie[]getSessionCookies()voidsetCredentials(de.narimo.commons.UserCredentials credentials)voidsetSessionCookies(javax.ws.rs.core.Cookie[] sessionCookies)
-
-
-
Method Detail
-
getCredentials
de.narimo.commons.UserCredentials getCredentials()
-
setCredentials
void setCredentials(de.narimo.commons.UserCredentials credentials)
-
getSessionCookies
javax.ws.rs.core.Cookie[] getSessionCookies()
-
setSessionCookies
void setSessionCookies(javax.ws.rs.core.Cookie[] sessionCookies)
-
-