public class CallerPrincipalCallback extends Object implements Callback
Callback for setting the container's caller (or Remote user) principal. This callback is intended to be called by a serverAuthModule during its validateRequest processing.
Constructor and Description |
---|
CallerPrincipalCallback(Subject s,
Principal p)
Create a CallerPrincipalCallback to set the container's representation of the caller principal.
|
CallerPrincipalCallback(Subject s,
String n)
Create a CallerPrincipalCallback to set the container's representation of the caller principal.
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
Get the caller principal name.
|
Principal |
getPrincipal()
Get the caller principal.
|
Subject |
getSubject()
Get the Subject in which the handler will distinguish the caller principal
|
public CallerPrincipalCallback(Subject s, Principal p)
Create a CallerPrincipalCallback to set the container's representation of the caller principal.
s
- The Subject in which the container will distinguish the caller identity.p
- The Principal that will be distinguished as the caller principal. This value may be null.
The CallbackHandler must use the argument Principal to establish the caller principal associated with
the invocation being processed by the container. When the argument Principal is null, the handler must
establish the container's representation of the unauthenticated caller principal. The handler may
perform principal mapping of non-null argument Principal values, but it must be possible to configure
the handler such that it establishes the non-null argument Principal as the caller principal.public CallerPrincipalCallback(Subject s, String n)
Create a CallerPrincipalCallback to set the container's representation of the caller principal.
s
- The Subject in which the container will distinguish the caller identity.n
- The String value that will be returned when getName() is called on the principal established as the
caller principal or null.
The CallbackHandler must use the n argument to establish the caller principal associated with the
invocation being processed by the container. When the n argument is null, the handler must establish
the container’s representation of the unauthenticated caller principal (which may or may not be equal to
null, depending on the requirements of the container type ). The handler may perform principal
mapping of non-null values of n, but it must be possible to configure the handler such that it establishes
the non-null argument value as the value returned when getName is called on the established principalpublic String getName()
Get the caller principal name.
public Principal getPrincipal()
Get the caller principal.
public Subject getSubject()
Get the Subject in which the handler will distinguish the caller principal
Copyright © 2019 JBoss by Red Hat. All rights reserved.