Tabnine Logo
EJB3SubsystemNamespace.getUriString
Code IndexAdd Tabnine to your IDE (free)

How to use
getUriString
method
in
org.jboss.as.ejb3.subsystem.EJB3SubsystemNamespace

Best Java code snippets using org.jboss.as.ejb3.subsystem.EJB3SubsystemNamespace.getUriString (Showing top 4 results out of 315)

origin: wildfly/wildfly

/**
 * {@inheritDoc}
 */
@Override
public void writeContent(final XMLExtendedStreamWriter writer, final SubsystemMarshallingContext context) throws XMLStreamException {
  context.startSubsystemElement(EJB3SubsystemNamespace.EJB3_5_0.getUriString(), false);
  writeElements(writer, context);
  // write the subsystem end element
  writer.writeEndElement();
}
origin: wildfly/wildfly

private void parseThreadPools(final XMLExtendedStreamReader reader, final List<ModelNode> operations) throws XMLStreamException {
  // no attributes expected
  requireNoAttributes(reader);
  final ModelNode parentAddress = SUBSYSTEM_PATH.toModelNode();
  while (reader.hasNext() && reader.nextTag() != XMLStreamConstants.END_ELEMENT) {
    EJB3SubsystemNamespace readerNS = EJB3SubsystemNamespace.forUri(reader.getNamespaceURI());
    switch (EJB3SubsystemXMLElement.forName(reader.getLocalName())) {
      case THREAD_POOL: {
        ThreadsParser.getInstance().parseUnboundedQueueThreadPool(reader, readerNS.getUriString(),
            Namespace.THREADS_1_1, parentAddress, operations, THREAD_POOL, null);
        break;
      }
      default: {
        throw unexpectedElement(reader);
      }
    }
  }
}
origin: org.jboss.as/jboss-as-ejb3

/**
 * {@inheritDoc}
 */
@Override
public void writeContent(final XMLExtendedStreamWriter writer, final SubsystemMarshallingContext context) throws XMLStreamException {
  context.startSubsystemElement(EJB3SubsystemNamespace.EJB3_1_4.getUriString(), false);
  writeElements(writer,  context);
  // write the subsystem end element
  writer.writeEndElement();
}
origin: org.jboss.as/jboss-as-ejb3

private void parseThreadPools(final XMLExtendedStreamReader reader, final List<ModelNode> operations) throws XMLStreamException {
  // no attributes expected
  requireNoAttributes(reader);
  final ModelNode parentAddress = SUBSYSTEM_PATH.toModelNode();
  while (reader.hasNext() && reader.nextTag() != XMLStreamConstants.END_ELEMENT) {
    EJB3SubsystemNamespace readerNS = EJB3SubsystemNamespace.forUri(reader.getNamespaceURI());
    switch (EJB3SubsystemXMLElement.forName(reader.getLocalName())) {
      case THREAD_POOL: {
        ThreadsParser.getInstance().parseUnboundedQueueThreadPool(reader, readerNS.getUriString(),
            Namespace.THREADS_1_1, parentAddress, operations, THREAD_POOL, null);
        break;
      }
      default: {
        throw unexpectedElement(reader);
      }
    }
  }
}
org.jboss.as.ejb3.subsystemEJB3SubsystemNamespacegetUriString

Javadoc

Get the URI of this namespace.

Popular methods of EJB3SubsystemNamespace

  • forUri

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • getSystemService (Context)
  • setContentView (Activity)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Path (java.nio.file)
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Collectors (java.util.stream)
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now