Tabnine Logo
ConfigurationMessages
Code IndexAdd Tabnine to your IDE (free)

How to use
ConfigurationMessages
in
com.sun.tools.ws.resources

Best Java code snippets using com.sun.tools.ws.resources.ConfigurationMessages (Showing top 8 results out of 315)

origin: org.glassfish.metro/webservices-tools

/**
 * Ignoring: binding file "{0}". It is not a jaxws or a jaxb binding file.
 * 
 */
public static String CONFIGURATION_NOT_BINDING_FILE(Object arg0) {
  return LOCALIZER.localize(localizableCONFIGURATION_NOT_BINDING_FILE(arg0));
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * Exposing it as a public method to allow external tools such as NB to read from wsdl model and work on it.
 * TODO: WSDL model needs to be exposed - basically at tool time we need to use the runtimw wsdl model
 *
 * Binding files could be jaxws or jaxb. This method identifies jaxws and jaxb binding files and keeps them separately. jaxb binding files are given separately
 * to JAXB in {@link com.sun.tools.ws.processor.modeler.wsdl.JAXBModelBuilder}
 *
 * @param receiver {@link ErrorReceiver}
 */
public final void parseBindings(ErrorReceiver receiver){
  for (InputSource is : bindingFiles) {
    XMLStreamReader reader =
        XMLStreamReaderFactory.create(is,true);
    XMLStreamReaderUtil.nextElementContent(reader);
    if (reader.getName().equals(JAXWSBindingsConstants.JAXWS_BINDINGS)) {
      jaxwsCustomBindings.add(new RereadInputSource(is));
    } else if (reader.getName().equals(JAXWSBindingsConstants.JAXB_BINDINGS) ||
        reader.getName().equals(new QName(SchemaConstants.NS_XSD, "schema"))) {
      jaxbCustomBindings.add(new RereadInputSource(is));
    } else {
      LocatorImpl locator = new LocatorImpl();
      locator.setSystemId(reader.getLocation().getSystemId());
      locator.setPublicId(reader.getLocation().getPublicId());
      locator.setLineNumber(reader.getLocation().getLineNumber());
      locator.setColumnNumber(reader.getLocation().getColumnNumber());
      receiver.warning(locator, ConfigurationMessages.CONFIGURATION_NOT_BINDING_FILE(is.getSystemId()));
    }
  }
}
origin: org.glassfish.metro/webservices-tools

/**
 * Exposing it as a public method to allow external tools such as NB to read from wsdl model and work on it.
 * TODO: WSDL model needs to be exposed - basically at tool time we need to use the runtimw wsdl model
 *
 * Binding files could be jaxws or jaxb. This method identifies jaxws and jaxb binding files and keeps them separately. jaxb binding files are given separately
 * to JAXB in {@link com.sun.tools.ws.processor.modeler.wsdl.JAXBModelBuilder}
 *
 * @param receiver {@link ErrorReceiver}
 */
public final void parseBindings(ErrorReceiver receiver){
  for (InputSource is : bindingFiles) {
    XMLStreamReader reader =
        XMLStreamReaderFactory.create(is,true);
    XMLStreamReaderUtil.nextElementContent(reader);
    if (reader.getName().equals(JAXWSBindingsConstants.JAXWS_BINDINGS)) {
      jaxwsCustomBindings.add(new RereadInputSource(is));
    } else if (reader.getName().equals(JAXWSBindingsConstants.JAXB_BINDINGS) ||
        reader.getName().equals(new QName(SchemaConstants.NS_XSD, "schema"))) {
      jaxbCustomBindings.add(new RereadInputSource(is));
    } else {
      LocatorImpl locator = new LocatorImpl();
      locator.setSystemId(reader.getLocation().getSystemId());
      locator.setPublicId(reader.getLocation().getPublicId());
      locator.setLineNumber(reader.getLocation().getLineNumber());
      locator.setColumnNumber(reader.getLocation().getColumnNumber());
      receiver.warning(locator, ConfigurationMessages.CONFIGURATION_NOT_BINDING_FILE(is.getSystemId()));
    }
  }
}
origin: javaee/metro-jax-ws

/**
 * Ignoring: binding file "{0}". It is not a jaxws or a jaxb binding file.
 * 
 */
public static String CONFIGURATION_NOT_BINDING_FILE(Object arg0) {
  return LOCALIZER.localize(localizableCONFIGURATION_NOT_BINDING_FILE(arg0));
}
origin: javaee/metro-jax-ws

/**
 * Exposing it as a public method to allow external tools such as NB to read from wsdl model and work on it.
 * TODO: WSDL model needs to be exposed - basically at tool time we need to use the runtimw wsdl model
 *
 * Binding files could be jaxws or jaxb. This method identifies jaxws and jaxb binding files and keeps them separately. jaxb binding files are given separately
 * to JAXB in {@link com.sun.tools.ws.processor.modeler.wsdl.JAXBModelBuilder}
 *
 * @param receiver {@link ErrorReceiver}
 */
public final void parseBindings(ErrorReceiver receiver){
  for (InputSource is : bindingFiles) {
    XMLStreamReader reader =
        XMLStreamReaderFactory.create(is,true);
    XMLStreamReaderUtil.nextElementContent(reader);
    if (reader.getName().equals(JAXWSBindingsConstants.JAXWS_BINDINGS)) {
      jaxwsCustomBindings.add(new RereadInputSource(is));
    } else if (reader.getName().equals(JAXWSBindingsConstants.JAXB_BINDINGS) ||
        reader.getName().equals(new QName(SchemaConstants.NS_XSD, "schema"))) {
      jaxbCustomBindings.add(new RereadInputSource(is));
    } else {
      LocatorImpl locator = new LocatorImpl();
      locator.setSystemId(reader.getLocation().getSystemId());
      locator.setPublicId(reader.getLocation().getPublicId());
      locator.setLineNumber(reader.getLocation().getLineNumber());
      locator.setColumnNumber(reader.getLocation().getColumnNumber());
      receiver.warning(locator, ConfigurationMessages.CONFIGURATION_NOT_BINDING_FILE(is.getSystemId()));
    }
  }
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * Ignoring: binding file "{0}". It is not a jaxws or a jaxb binding file.
 * 
 */
public static String CONFIGURATION_NOT_BINDING_FILE(Object arg0) {
  return LOCALIZER.localize(localizableCONFIGURATION_NOT_BINDING_FILE(arg0));
}
origin: javaee/metro-jax-ws

/**
 * Exposing it as a public method to allow external tools such as NB to read from wsdl model and work on it.
 * TODO: WSDL model needs to be exposed - basically at tool time we need to use the runtimw wsdl model
 *
 * Binding files could be jaxws or jaxb. This method identifies jaxws and jaxb binding files and keeps them separately. jaxb binding files are given separately
 * to JAXB in {@link com.sun.tools.ws.processor.modeler.wsdl.JAXBModelBuilder}
 *
 * @param receiver {@link ErrorReceiver}
 */
public final void parseBindings(ErrorReceiver receiver){
  for (InputSource is : bindingFiles) {
    XMLStreamReader reader =
        XMLStreamReaderFactory.create(is,true);
    XMLStreamReaderUtil.nextElementContent(reader);
    if (reader.getName().equals(JAXWSBindingsConstants.JAXWS_BINDINGS)) {
      jaxwsCustomBindings.add(new RereadInputSource(is));
    } else if (reader.getName().equals(JAXWSBindingsConstants.JAXB_BINDINGS) ||
        reader.getName().equals(new QName(SchemaConstants.NS_XSD, "schema"))) {
      jaxbCustomBindings.add(new RereadInputSource(is));
    } else {
      LocatorImpl locator = new LocatorImpl();
      locator.setSystemId(reader.getLocation().getSystemId());
      locator.setPublicId(reader.getLocation().getPublicId());
      locator.setLineNumber(reader.getLocation().getLineNumber());
      locator.setColumnNumber(reader.getLocation().getColumnNumber());
      receiver.warning(locator, ConfigurationMessages.CONFIGURATION_NOT_BINDING_FILE(is.getSystemId()));
    }
  }
}
origin: javaee/metro-jax-ws

/**
 * Ignoring: binding file "{0}". It is not a jaxws or a jaxb binding file.
 * 
 */
public static String CONFIGURATION_NOT_BINDING_FILE(Object arg0) {
  return LOCALIZER.localize(localizableCONFIGURATION_NOT_BINDING_FILE(arg0));
}
com.sun.tools.ws.resourcesConfigurationMessages

Javadoc

Defines string formatting method for each constant in the resource file

Most used methods

  • CONFIGURATION_NOT_BINDING_FILE
    Ignoring: binding file "{0}". It is not a jaxws or a jaxb binding file.
  • localizableCONFIGURATION_NOT_BINDING_FILE

Popular in Java

  • Reactive rest calls using spring rest template
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • runOnUiThread (Activity)
  • findViewById (Activity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Best IntelliJ plugins
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