org.opensaml.ws.wspolicy.Policy Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2008 Members of the EGEE Collaboration.
* Copyright 2008 University Corporation for Advanced Internet Development, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opensaml.ws.wspolicy;
import javax.xml.namespace.QName;
import org.opensaml.ws.wssecurity.IdBearing;
import org.opensaml.xml.AttributeExtensibleXMLObject;
/**
* The wsp:Policy element.
*
* @see "WS-Policy (http://schemas.xmlsoap.org/ws/2004/09/policy)"
*
*/
public interface Policy extends OperatorContentType, AttributeExtensibleXMLObject, IdBearing {
/** Element local name. */
public static final String ELEMENT_LOCAL_NAME = "Policy";
/** Default element name. */
public static final QName ELEMENT_NAME =
new QName(WSPolicyConstants.WSP_NS, ELEMENT_LOCAL_NAME, WSPolicyConstants.WSP_PREFIX);
/** The wsp:Policy/@Name attribute local name. */
public static final String NAME_ATTRIB_NAME = "Name";
/**
* Returns the wsp:Policy/@Name attribute value.
*
* @return the Name
attribute value or null
.
*/
public String getName();
/**
* Sets the wsp:Policy/@Name attribute value.
*
* @param name the Name
attribute value to set.
*/
public void setName(String name);
}