Example usage for javax.security.auth.callback CallbackHandler interface-usage

List of usage examples for javax.security.auth.callback CallbackHandler interface-usage

Introduction

In this page you can find the example usage for javax.security.auth.callback CallbackHandler interface-usage.

Usage

From source file org.obiba.mica.config.security.SecretKeyCallbackHandler.java

/**
 *
 */
@Component
public class SecretKeyCallbackHandler implements CallbackHandler {

From source file com.heren.turtle.server.core.ClientCallBackHandler.java

/**
 * com.heren.turtle.entrance.ws
 *
 * @author zhiwei
 * @create 2017-03-13 13:14.
 */

From source file org.springframework.ws.soap.security.callback.AbstractCallbackHandler.java

/**
 * Abstract implementation of a <code>CallbackHandler</code>.
 *
 * @author Arjen Poutsma
 * @since 1.0.0
 */

From source file org.apache.hadoop.gateway.util.CredentialsProvider.java

public class CredentialsProvider implements CallbackHandler {

    Credentials credentials;

    public CredentialsProvider(Credentials credentials) {
        this.credentials = credentials;

From source file org.polymap.core.security.ServicesCallbackHandler.java

/**
 * This callback handler is used for service logins without dialog. As there is a
 * mapping between callback handler and JAAS config the service JAAS config is always
 * needed, even if is is almost always the same as the dialog login config.
 * 
 * @author <a href="http://www.polymap.de">Falko Brutigam</a>

From source file test.unit.be.e_contract.dssp.client.CallbackTestHandler.java

public class CallbackTestHandler implements CallbackHandler {

    private static final Log LOG = LogFactory.getLog(CallbackTestHandler.class);

    public static byte[] tokenKey;

From source file org.trypticon.xmpp.util.FixedCallbackHandler.java

/**
 * A callback handler which responds to authentication callbacks with fixed values.
 */
public class FixedCallbackHandler implements CallbackHandler {
    /**
     * Logging channel.

From source file be.fedict.hsm.ws.impl.NamePasswordCallbackHandler.java

/**
 * JAAS callback handler based on the application X509 credential.
 * 
 * @author Frank Cornelis
 * 
 */

From source file no.digipost.api.interceptors.AttachmentCallbackHandler.java

public class AttachmentCallbackHandler implements CallbackHandler {
    private final SoapMessage message;

    public AttachmentCallbackHandler(final SoapMessage message) {
        this.message = message;

From source file net.gplatform.sudoor.server.cxf.ClientPasswordCallback.java

/**
 * NOT used, as it need to retrieve clear pw from spring security via callback while spring security store hash in DB,
 * Use simple WS to do authenticate instead.
 * @author xufucheng
 *
 */