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

com.sun.xml.ws.security.opt.impl.util.NamespaceAndPrefixMapper Maven / Gradle / Ivy

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

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

import java.util.ArrayList;
import java.util.List;
import org.jvnet.staxex.NamespaceContextEx;

/**
 *
 * @author [email protected]
 */
public class NamespaceAndPrefixMapper {
    
    public static final String NS_PREFIX_MAPPER = "NS_And_Prefix_Mapper";
    
    NamespaceContextEx ns = null;
    List incList = null;
    
    /** Creates a new instance of NamespaceAndPrefixMapper */
    public NamespaceAndPrefixMapper(NamespaceContextEx ns, boolean disableIncPrefix) {
        this.ns = ns;
        incList = new ArrayList();
        if(!disableIncPrefix){
            incList.add("wsse"); 
            incList.add("S");
        }
    }
    
    public NamespaceAndPrefixMapper(NamespaceContextEx ns, List incList){
        this.ns = ns;
        this.incList = incList;
    }
    
    public void setNamespaceContext(NamespaceContextEx ns){
        this.ns = ns;
    }
    
    public NamespaceContextEx getNamespaceContext(){
        return ns;
    }
    
    public void addToInclusivePrefixList(String s){
        if(incList == null)
            incList = new ArrayList();
        incList.add(s);
    }
    
    public void removeFromInclusivePrefixList(String s){
        if(incList == null)
            return;
        incList.remove(s);
    }
    
    public List getInlusivePrefixList(){
        return incList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy