All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.security.impl.WebServiceContextSecurityDelegate Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
/*
 * 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
 */

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.sun.xml.ws.security.impl;

import com.sun.xml.ws.api.message.Packet;
import com.sun.xml.ws.api.server.WSEndpoint;
import com.sun.xml.ws.api.server.WebServiceContextDelegate;
import com.sun.xml.wss.impl.MessageConstants;
import java.security.Principal;
import java.util.Set;
import javax.security.auth.Subject;


public class WebServiceContextSecurityDelegate implements WebServiceContextDelegate {

    private WebServiceContextDelegate delegate = null;

    public WebServiceContextSecurityDelegate(WebServiceContextDelegate delegate) {
        this.delegate = delegate;
    }
    public Principal getUserPrincipal(Packet packet) {
       Subject subject =  (Subject)packet.invocationProperties.get(MessageConstants.AUTH_SUBJECT);
       if (subject == null) {
           //log a warning ?
           return null;
       } 
       Set set = subject.getPrincipals(Principal.class);
       if (set.isEmpty()) {
           return null;
       }
       
       return set.iterator().next();
    }

    public boolean isUserInRole(Packet arg0, String role) {
        //we have to invoke some glassfish methods.
        return false;
    }

    public String getEPRAddress(Packet arg0, WSEndpoint arg1) {
        return delegate.getEPRAddress(arg0, arg1);
    }

    public String getWSDLAddress(Packet arg0, WSEndpoint arg1) {
        return delegate.getWSDLAddress(arg0, arg1);
    }
    
   

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy