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

com.sun.xml.ws.security.opt.api.SecurityElement Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2021 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
 */

/*
 * SecurityElement.java
 *
 * Created on August 1, 2006, 2:43 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.sun.xml.ws.security.opt.api;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;

/**
 *
 * @author [email protected]
 */
public interface SecurityElement {
    /**
     * 
     * @return id
     */
    String getId();
    /**
     * 
     * @param id 
     */
    void setId(final String id);
    /**
     * 
     * @return namespace uri of the security header element.
     */
    String getNamespaceURI();
    
    /**
     * Gets the local name of this header element.
     *
     * @return
     *      this string must be interned.
     */
    String getLocalPart();
    
   
    /**
     * Reads the header as a {@link XMLStreamReader}.
     * 
     * 

* The returned parser points at the start element of this header. * (IOW, {@link XMLStreamReader#getEventType()} would return * {@link XMLStreamReader#START_ELEMENT}. * *

Performance Expectation *

* For some Header implementations, this operation * is a non-trivial operation. Therefore, use of this method * is discouraged unless the caller is interested in reading * the whole header. * *

* Similarly, if the caller wants to use this method only to do * the API conversion (such as simply firing SAX events from * {@link XMLStreamReader}), then the JAX-WS team requests * that you talk to us. * *

* Messages that come from tranport usually provides * a reasonably efficient implementation of this method. * * @return must not null. * @throws javax.xml.stream.XMLStreamException */ XMLStreamReader readHeader() throws XMLStreamException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy