org.fabric3.introspection.xml.LoaderHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric3-introspection-spi Show documentation
Show all versions of fabric3-introspection-spi Show documentation
Fabric3 SPIs for component introspection.
The newest version!
/*
* Fabric3
* Copyright ? 2008 Metaform Systems Limited
*
* This proprietary software may be used only connection with the Fabric3 license
* (the ?License?), a copy of which is included in the software or may be
* obtained at: http://www.metaformsystems.com/licenses/license.html.
* Software distributed under the License is distributed on an ?as is? basis,
* without warranties or conditions of any kind. See the License for the
* specific language governing permissions and limitations of use of the software.
* This software is distributed in conjunction with other software licensed under
* different terms. See the separate licenses for those programs included in the
* distribution for the permitted and restricted uses of such software.
*
* --- Original Apache License ---
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.fabric3.introspection.xml;
import java.net.URI;
import java.util.List;
import java.util.Set;
import javax.xml.namespace.QName;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import org.w3c.dom.Document;
import org.fabric3.scdl.PolicyAware;
import org.fabric3.introspection.IntrospectionContext;
/**
* Interface for the helper class for loading intents and policy sets into elements aginst which intents and policies can be declared.
*
* @version $Revision$ $Date$
*/
public interface LoaderHelper {
/**
* Load an XML value from a Stax stream.
*
* The reader must be positioned at an element whose body contains an XML value. This will typically be an SCA <property> element (either in
* a <composite> or in a <component>). The resulting document comprises a <value> element whose body content will be that of the
* original <property> element.
*
* @param reader a stream containing a property value
* @return a standalone document containing the value
* @throws javax.xml.stream.XMLStreamException
* if there was a problem reading the stream
*/
Document loadValue(XMLStreamReader reader) throws XMLStreamException;
/**
* Loads policy sets and intents defined against bindings, implementations, services, references and components. Errors will be collated in the
* IntrospectionContext.
*
* @param policyAware Element against which policy sets and intents are declared.
* @param reader XML stream reader from where the attributes are read.
* @param context the introspection context.
*/
void loadPolicySetsAndIntents(PolicyAware policyAware, XMLStreamReader reader, IntrospectionContext context);
/**
* Convert a component URI in the form ${componentName}/${serviceName} to a URI of the form ${componentName}#${serviceName}
*
* @param target the target URI to convert
* @return a URI where the fragment represents the service name
*/
URI getURI(String target);
/**
* Parses a list of qualified names.
*
* @param reader XML stream reader.
* @param attribute Attribute that contains the list of qualified names.
* @return Set containing the qualified names.
* @throws InvalidPrefixException If the qualified name cannot be resolved.
*/
Set parseListOfQNames(XMLStreamReader reader, String attribute) throws InvalidPrefixException;
/**
* Constructs a QName from the given name. If a namespace prefix is not specified in the name, the namespace context is used
*
* @param name the name to parse
* @param reader the XML stream reader
* @return the parsed QName
* @throws InvalidPrefixException if a specified namespace prefix is invalid
*/
QName createQName(String name, XMLStreamReader reader) throws InvalidPrefixException;
/**
* Parses a list of URIs contained in a attribute.
*
* @param reader the XML stream reader
* @param attribute the attribute to parse
* @return the list of URIs contained in that attribute, or null if the attribute is not present
*/
List parseListOfUris(XMLStreamReader reader, String attribute);
}