com.sun.xml.wss.provider.wsit.WSITClientAuthConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
/*
* WSITClientAuthConfig.java
*
* Created on November 1, 2006, 11:40 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.sun.xml.wss.provider.wsit;
import com.sun.xml.ws.api.message.Packet;
import com.sun.xml.ws.api.model.wsdl.WSDLPort;
import com.sun.xml.ws.policy.PolicyMap;
import com.sun.xml.ws.security.secconv.WSSecureConversationException;
import java.util.Map;
import javax.security.auth.Subject;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.message.AuthException;
import javax.security.auth.message.MessageInfo;
import javax.security.auth.message.config.ClientAuthConfig;
import javax.security.auth.message.config.ClientAuthContext;
import javax.xml.bind.JAXBElement;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.sun.xml.wss.provider.wsit.logging.LogDomainConstants;
import com.sun.xml.wss.provider.wsit.logging.LogStringsMessages;
import java.util.Collections;
import java.util.WeakHashMap;
/**
*
* @author kumar jayanti
*/
public class WSITClientAuthConfig implements ClientAuthConfig {
private static final Logger log =
Logger.getLogger(
LogDomainConstants.WSIT_PVD_DOMAIN,
LogDomainConstants.WSIT_PVD_DOMAIN_BUNDLE);
private String layer = null;
private String appContext = null;
private CallbackHandler callbackHandler = null;
//private PolicyMap policyMap = null;
private ReentrantReadWriteLock rwLock;
private ReentrantReadWriteLock.ReadLock rLock;
private ReentrantReadWriteLock.WriteLock wLock;
private volatile boolean secEnabled;
private Map tubetoClientAuthContextHash = Collections.synchronizedMap(new WeakHashMap());
/** Creates a new instance of WSITClientAuthConfig */
public WSITClientAuthConfig(String layer, String appContext, CallbackHandler callbackHandler) {
this.layer = layer;
this.appContext = appContext;
this.callbackHandler = callbackHandler;
this.rwLock = new ReentrantReadWriteLock(true);
this.rLock = rwLock.readLock();
this.wLock = rwLock.writeLock();
}
public ClientAuthContext getAuthContext(String operation, Subject subject, Map rawMap) throws AuthException {
@SuppressWarnings("unchecked") Map