Package org.jboss.as.osgi.parser.OSGiSubsystemState

Examples of org.jboss.as.osgi.parser.OSGiSubsystemState.OSGiModule


                        if (identifier == null)
                            throw ParseUtils.missingRequired(reader, Collections.singleton(Attribute.IDENTIFIER));
                        if (identifiers.contains(identifier))
                            throw new XMLStreamException(element.getLocalName() + " already declared", reader.getLocation());

                        subsystemState.addModule(new OSGiModule(identifier, start));
                        identifiers.add(identifier);

                        ParseUtils.requireNoContent(reader);
                    } else {
                        throw ParseUtils.unexpectedElement(reader);
View Full Code Here

TOP

Related Classes of org.jboss.as.osgi.parser.OSGiSubsystemState.OSGiModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.