1 /*
   2  * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.xml.internal.ws.resources;
  27 
  28 import java.util.Locale;
  29 import java.util.ResourceBundle;
  30 import javax.annotation.Generated;
  31 import com.sun.istack.internal.localization.Localizable;
  32 import com.sun.istack.internal.localization.LocalizableMessageFactory;
  33 import com.sun.istack.internal.localization.LocalizableMessageFactory.ResourceBundleSupplier;
  34 import com.sun.istack.internal.localization.Localizer;
  35 
  36 
  37 /**
  38  * Defines string formatting method for each constant in the resource file
  39  *
  40  */
  41 @Generated("com.sun.istack.internal.maven.ResourceGenMojo")
  42 public final class ModelerMessages {
  43 
  44     private final static String BUNDLE_NAME = "com.sun.xml.internal.ws.resources.modeler";
  45     private final static LocalizableMessageFactory MESSAGE_FACTORY = new LocalizableMessageFactory(BUNDLE_NAME, new ModelerMessages.BundleSupplier());
  46     private final static Localizer LOCALIZER = new Localizer();
  47 
  48     public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNSUPPORTED_SCHEMA(Object arg0, Object arg1) {
  49         return MESSAGE_FACTORY.getMessage("runtime.modeler.external.metadata.unsupported.schema", arg0, arg1);
  50     }
  51 
  52     /**
  53      * Unsupported metadata file schema {0}. Supported schemes are {1}.
  54      *
  55      */
  56     public static String RUNTIME_MODELER_EXTERNAL_METADATA_UNSUPPORTED_SCHEMA(Object arg0, Object arg1) {
  57         return LOCALIZER.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNSUPPORTED_SCHEMA(arg0, arg1));
  58     }
  59 
  60     public static Localizable localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_CHECKED_EXCEPTIONS(Object arg0, Object arg1, Object arg2) {
  61         return MESSAGE_FACTORY.getMessage("runtime.modeler.oneway.operation.no.checked.exceptions", arg0, arg1, arg2);
  62     }
  63 
  64     /**
  65      * Oneway operation should not throw any checked exceptions class: {0} method: {1} throws: {2}
  66      *
  67      */
  68     public static String RUNTIME_MODELER_ONEWAY_OPERATION_NO_CHECKED_EXCEPTIONS(Object arg0, Object arg1, Object arg2) {
  69         return LOCALIZER.localize(localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_CHECKED_EXCEPTIONS(arg0, arg1, arg2));
  70     }
  71 
  72     public static Localizable localizableRUNTIME_MODELER_NO_PACKAGE(Object arg0) {
  73         return MESSAGE_FACTORY.getMessage("runtime.modeler.no.package", arg0);
  74     }
  75 
  76     /**
  77      * A @WebService.targetNamespace must be specified on classes with no package.  Class: {0}
  78      *
  79      */
  80     public static String RUNTIME_MODELER_NO_PACKAGE(Object arg0) {
  81         return LOCALIZER.localize(localizableRUNTIME_MODELER_NO_PACKAGE(arg0));
  82     }
  83 
  84     public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNABLE_TO_READ(Object arg0) {
  85         return MESSAGE_FACTORY.getMessage("runtime.modeler.external.metadata.unable.to.read", arg0);
  86     }
  87 
  88     /**
  89      * Unable to read metadata file {0}. Check configuration/deployment.
  90      *
  91      */
  92     public static String RUNTIME_MODELER_EXTERNAL_METADATA_UNABLE_TO_READ(Object arg0) {
  93         return LOCALIZER.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_UNABLE_TO_READ(arg0));
  94     }
  95 
  96     public static Localizable localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATIC(Object arg0) {
  97         return MESSAGE_FACTORY.getMessage("runtime.modeler.webmethod.must.be.nonstatic", arg0);
  98     }
  99 
 100     /**
 101      * @WebMethod is not allowed on a static method {0}
 102      *
 103      */
 104     public static String RUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATIC(Object arg0) {
 105         return LOCALIZER.localize(localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATIC(arg0));
 106     }
 107 
 108     public static Localizable localizableRUNTIMEMODELER_INVALID_SOAPBINDING_ON_METHOD(Object arg0, Object arg1, Object arg2) {
 109         return MESSAGE_FACTORY.getMessage("runtimemodeler.invalid.soapbindingOnMethod", arg0, arg1, arg2);
 110     }
 111 
 112     /**
 113      * Invalid annotation: {0} on Method {1} in Class {2}, A method cannot be annotated with @SOAPBinding with Style "RPC"
 114      *
 115      */
 116     public static String RUNTIMEMODELER_INVALID_SOAPBINDING_ON_METHOD(Object arg0, Object arg1, Object arg2) {
 117         return LOCALIZER.localize(localizableRUNTIMEMODELER_INVALID_SOAPBINDING_ON_METHOD(arg0, arg1, arg2));
 118     }
 119 
 120     public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_WRONG_FORMAT(Object arg0) {
 121         return MESSAGE_FACTORY.getMessage("runtime.modeler.external.metadata.wrong.format", arg0);
 122     }
 123 
 124     /**
 125      * Unable to read metadata from {0}. Is the format correct?
 126      *
 127      */
 128     public static String RUNTIME_MODELER_EXTERNAL_METADATA_WRONG_FORMAT(Object arg0) {
 129         return LOCALIZER.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_WRONG_FORMAT(arg0));
 130     }
 131 
 132     public static Localizable localizableRUNTIME_MODELER_NO_WEBSERVICE_ANNOTATION(Object arg0) {
 133         return MESSAGE_FACTORY.getMessage("runtime.modeler.no.webservice.annotation", arg0);
 134     }
 135 
 136     /**
 137      * A WebService annotation is not present on class: {0}
 138      *
 139      */
 140     public static String RUNTIME_MODELER_NO_WEBSERVICE_ANNOTATION(Object arg0) {
 141         return LOCALIZER.localize(localizableRUNTIME_MODELER_NO_WEBSERVICE_ANNOTATION(arg0));
 142     }
 143 
 144     public static Localizable localizableRUNTIME_MODELER_SOAPBINDING_CONFLICT(Object arg0, Object arg1, Object arg2) {
 145         return MESSAGE_FACTORY.getMessage("runtime.modeler.soapbinding.conflict", arg0, arg1, arg2);
 146     }
 147 
 148     /**
 149      * SOAPBinding Style {0} for method {1} conflicts with global SOAPBinding Style {2}
 150      *
 151      */
 152     public static String RUNTIME_MODELER_SOAPBINDING_CONFLICT(Object arg0, Object arg1, Object arg2) {
 153         return LOCALIZER.localize(localizableRUNTIME_MODELER_SOAPBINDING_CONFLICT(arg0, arg1, arg2));
 154     }
 155 
 156     public static Localizable localizableNESTED_MODELER_ERROR(Object arg0) {
 157         return MESSAGE_FACTORY.getMessage("nestedModelerError", arg0);
 158     }
 159 
 160     /**
 161      * runtime modeler error: {0}
 162      *
 163      */
 164     public static String NESTED_MODELER_ERROR(Object arg0) {
 165         return LOCALIZER.localize(localizableNESTED_MODELER_ERROR(arg0));
 166     }
 167 
 168     public static Localizable localizableRUNTIME_MODELER_METHOD_NOT_FOUND(Object arg0, Object arg1) {
 169         return MESSAGE_FACTORY.getMessage("runtime.modeler.method.not.found", arg0, arg1);
 170     }
 171 
 172     /**
 173      * method: {0} could not be found on class: {1}
 174      *
 175      */
 176     public static String RUNTIME_MODELER_METHOD_NOT_FOUND(Object arg0, Object arg1) {
 177         return LOCALIZER.localize(localizableRUNTIME_MODELER_METHOD_NOT_FOUND(arg0, arg1));
 178     }
 179 
 180     public static Localizable localizableUNABLE_TO_CREATE_JAXB_CONTEXT() {
 181         return MESSAGE_FACTORY.getMessage("unable.to.create.JAXBContext");
 182     }
 183 
 184     /**
 185      * Unable to create JAXBContext
 186      *
 187      */
 188     public static String UNABLE_TO_CREATE_JAXB_CONTEXT() {
 189         return LOCALIZER.localize(localizableUNABLE_TO_CREATE_JAXB_CONTEXT());
 190     }
 191 
 192     public static Localizable localizableRUNTIME_MODELER_NO_OPERATIONS(Object arg0) {
 193         return MESSAGE_FACTORY.getMessage("runtime.modeler.no.operations", arg0);
 194     }
 195 
 196     /**
 197      * The web service defined by the class {0} does not contain any valid WebMethods.
 198      *
 199      */
 200     public static String RUNTIME_MODELER_NO_OPERATIONS(Object arg0) {
 201         return LOCALIZER.localize(localizableRUNTIME_MODELER_NO_OPERATIONS(arg0));
 202     }
 203 
 204     public static Localizable localizableRUNTIME_MODELER_WRAPPER_NOT_FOUND(Object arg0) {
 205         return MESSAGE_FACTORY.getMessage("runtime.modeler.wrapper.not.found", arg0);
 206     }
 207 
 208     /**
 209      * Wrapper class {0} is not found. Have you run annotation processing to generate them?
 210      *
 211      */
 212     public static String RUNTIME_MODELER_WRAPPER_NOT_FOUND(Object arg0) {
 213         return LOCALIZER.localize(localizableRUNTIME_MODELER_WRAPPER_NOT_FOUND(arg0));
 214     }
 215 
 216     public static Localizable localizableRUNTIME_MODELER_INVALID_SOAPBINDING_PARAMETERSTYLE(Object arg0, Object arg1) {
 217         return MESSAGE_FACTORY.getMessage("runtime.modeler.invalid.soapbinding.parameterstyle", arg0, arg1);
 218     }
 219 
 220     /**
 221      * Incorrect usage of Annotation {0} on {1}, ParameterStyle can only be WRAPPED with RPC Style Web service.
 222      *
 223      */
 224     public static String RUNTIME_MODELER_INVALID_SOAPBINDING_PARAMETERSTYLE(Object arg0, Object arg1) {
 225         return LOCALIZER.localize(localizableRUNTIME_MODELER_INVALID_SOAPBINDING_PARAMETERSTYLE(arg0, arg1));
 226     }
 227 
 228     public static Localizable localizableRUNTIME_MODELER_EXTERNAL_METADATA_GENERIC(Object arg0) {
 229         return MESSAGE_FACTORY.getMessage("runtime.modeler.external.metadata.generic", arg0);
 230     }
 231 
 232     /**
 233      * An error occurred while processing external WS metadata; check configuration/deployment. Nested error: {0}.
 234      *
 235      */
 236     public static String RUNTIME_MODELER_EXTERNAL_METADATA_GENERIC(Object arg0) {
 237         return LOCALIZER.localize(localizableRUNTIME_MODELER_EXTERNAL_METADATA_GENERIC(arg0));
 238     }
 239 
 240     public static Localizable localizableRUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(Object arg0) {
 241         return MESSAGE_FACTORY.getMessage("runtime.modeler.addressing.responses.nosuchmethod", arg0);
 242     }
 243 
 244     /**
 245      * JAX-WS 2.1 API is loaded from {0}, But JAX-WS runtime requires JAX-WS 2.2 API. Use the endorsed standards override mechanism to load JAX-WS 2.2 API
 246      *
 247      */
 248     public static String RUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(Object arg0) {
 249         return LOCALIZER.localize(localizableRUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(arg0));
 250     }
 251 
 252     public static Localizable localizableRUNTIME_MODELER_WSFEATURE_ILLEGAL_FTRCONSTRUCTOR(Object arg0, Object arg1) {
 253         return MESSAGE_FACTORY.getMessage("runtime.modeler.wsfeature.illegal.ftrconstructor", arg0, arg1);
 254     }
 255 
 256     /**
 257      * Annotation {0} is illegal, In {1} @FeatureConstructor value doesn't match the constructor parameters
 258      *
 259      */
 260     public static String RUNTIME_MODELER_WSFEATURE_ILLEGAL_FTRCONSTRUCTOR(Object arg0, Object arg1) {
 261         return LOCALIZER.localize(localizableRUNTIME_MODELER_WSFEATURE_ILLEGAL_FTRCONSTRUCTOR(arg0, arg1));
 262     }
 263 
 264     public static Localizable localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_PUBLIC(Object arg0) {
 265         return MESSAGE_FACTORY.getMessage("runtime.modeler.webmethod.must.be.public", arg0);
 266     }
 267 
 268     /**
 269      * @WebMethod is not allowed on a non-public method {0}
 270      *
 271      */
 272     public static String RUNTIME_MODELER_WEBMETHOD_MUST_BE_PUBLIC(Object arg0) {
 273         return LOCALIZER.localize(localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_PUBLIC(arg0));
 274     }
 275 
 276     public static Localizable localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_OUT_PARAMETERS(Object arg0, Object arg1) {
 277         return MESSAGE_FACTORY.getMessage("runtime.modeler.oneway.operation.no.out.parameters", arg0, arg1);
 278     }
 279 
 280     /**
 281      * oneway operation should not have OUT parameters class: {0} method: {1}
 282      *
 283      */
 284     public static String RUNTIME_MODELER_ONEWAY_OPERATION_NO_OUT_PARAMETERS(Object arg0, Object arg1) {
 285         return LOCALIZER.localize(localizableRUNTIME_MODELER_ONEWAY_OPERATION_NO_OUT_PARAMETERS(arg0, arg1));
 286     }
 287 
 288     public static Localizable localizableRUNTIME_MODELER_ENDPOINT_INTERFACE_NO_WEBSERVICE(Object arg0) {
 289         return MESSAGE_FACTORY.getMessage("runtime.modeler.endpoint.interface.no.webservice", arg0);
 290     }
 291 
 292     /**
 293      * The Endpoint Interface: {0} does not have WebService Annotation
 294      *
 295      */
 296     public static String RUNTIME_MODELER_ENDPOINT_INTERFACE_NO_WEBSERVICE(Object arg0) {
 297         return LOCALIZER.localize(localizableRUNTIME_MODELER_ENDPOINT_INTERFACE_NO_WEBSERVICE(arg0));
 298     }
 299 
 300     public static Localizable localizableRUNTIME_MODELER_WSFEATURE_NO_FTRCONSTRUCTOR(Object arg0, Object arg1) {
 301         return MESSAGE_FACTORY.getMessage("runtime.modeler.wsfeature.no.ftrconstructor", arg0, arg1);
 302     }
 303 
 304     /**
 305      * Annotation {0} is not recognizable, at least one constructor of {1} should be marked with @FeatureConstructor
 306      *
 307      */
 308     public static String RUNTIME_MODELER_WSFEATURE_NO_FTRCONSTRUCTOR(Object arg0, Object arg1) {
 309         return LOCALIZER.localize(localizableRUNTIME_MODELER_WSFEATURE_NO_FTRCONSTRUCTOR(arg0, arg1));
 310     }
 311 
 312     public static Localizable localizableRUNTIME_MODELER_MTOM_CONFLICT(Object arg0, Object arg1) {
 313         return MESSAGE_FACTORY.getMessage("runtime.modeler.mtom.conflict", arg0, arg1);
 314     }
 315 
 316     /**
 317      * Error in  @BindingType: MTOM Configuration in binding identifier {0} conflicts with feature @MTOM {1}
 318      *
 319      */
 320     public static String RUNTIME_MODELER_MTOM_CONFLICT(Object arg0, Object arg1) {
 321         return LOCALIZER.localize(localizableRUNTIME_MODELER_MTOM_CONFLICT(arg0, arg1));
 322     }
 323 
 324     public static Localizable localizableRUNTIME_MODELER_CLASS_NOT_FOUND(Object arg0) {
 325         return MESSAGE_FACTORY.getMessage("runtime.modeler.class.not.found", arg0);
 326     }
 327 
 328     /**
 329      * class: {0} could not be found
 330      *
 331      */
 332     public static String RUNTIME_MODELER_CLASS_NOT_FOUND(Object arg0) {
 333         return LOCALIZER.localize(localizableRUNTIME_MODELER_CLASS_NOT_FOUND(arg0));
 334     }
 335 
 336     public static Localizable localizableRUNTIME_MODELER_WSFEATURE_MORETHANONE_FTRCONSTRUCTOR(Object arg0, Object arg1) {
 337         return MESSAGE_FACTORY.getMessage("runtime.modeler.wsfeature.morethanone.ftrconstructor", arg0, arg1);
 338     }
 339 
 340     /**
 341      * Annotation {0} is illegal, Only one constructor of {1} can be marked as @FeatureConstructor
 342      *
 343      */
 344     public static String RUNTIME_MODELER_WSFEATURE_MORETHANONE_FTRCONSTRUCTOR(Object arg0, Object arg1) {
 345         return LOCALIZER.localize(localizableRUNTIME_MODELER_WSFEATURE_MORETHANONE_FTRCONSTRUCTOR(arg0, arg1));
 346     }
 347 
 348     public static Localizable localizableRUNTIME_MODELER_FEATURE_CONFLICT(Object arg0, Object arg1) {
 349         return MESSAGE_FACTORY.getMessage("runtime.modeler.feature.conflict", arg0, arg1);
 350     }
 351 
 352     /**
 353      * Feature {0} in implementation conflicts with {1} in WSDL configuration
 354      *
 355      */
 356     public static String RUNTIME_MODELER_FEATURE_CONFLICT(Object arg0, Object arg1) {
 357         return LOCALIZER.localize(localizableRUNTIME_MODELER_FEATURE_CONFLICT(arg0, arg1));
 358     }
 359 
 360     public static Localizable localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATICFINAL(Object arg0) {
 361         return MESSAGE_FACTORY.getMessage("runtime.modeler.webmethod.must.be.nonstaticfinal", arg0);
 362     }
 363 
 364     /**
 365      * @WebMethod is not allowed on a static or final method {0}
 366      *
 367      */
 368     public static String RUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATICFINAL(Object arg0) {
 369         return LOCALIZER.localize(localizableRUNTIME_MODELER_WEBMETHOD_MUST_BE_NONSTATICFINAL(arg0));
 370     }
 371 
 372     public static Localizable localizableRUNTIME_MODELER_CANNOT_GET_SERVICE_NAME_FROM_INTERFACE(Object arg0) {
 373         return MESSAGE_FACTORY.getMessage("runtime.modeler.cannot.get.serviceName.from.interface", arg0);
 374     }
 375 
 376     /**
 377      * The serviceName cannot be retrieved from an interface.  class {0}
 378      *
 379      */
 380     public static String RUNTIME_MODELER_CANNOT_GET_SERVICE_NAME_FROM_INTERFACE(Object arg0) {
 381         return LOCALIZER.localize(localizableRUNTIME_MODELER_CANNOT_GET_SERVICE_NAME_FROM_INTERFACE(arg0));
 382     }
 383 
 384     public static Localizable localizableNOT_A_VALID_BARE_METHOD(Object arg0, Object arg1) {
 385         return MESSAGE_FACTORY.getMessage("not.a.valid.bare.method", arg0, arg1);
 386     }
 387 
 388     /**
 389      * SEI {0} has method {1} annotated as BARE but it has more than one parameter bound to body. This is invalid. Please annotate the method with annotation: @SOAPBinding(parameterStyle=SOAPBinding.ParameterStyle.WRAPPED)
 390      *
 391      */
 392     public static String NOT_A_VALID_BARE_METHOD(Object arg0, Object arg1) {
 393         return LOCALIZER.localize(localizableNOT_A_VALID_BARE_METHOD(arg0, arg1));
 394     }
 395 
 396     public static Localizable localizableRUNTIME_MODELER_PORTNAME_SERVICENAME_NAMESPACE_MISMATCH(Object arg0, Object arg1) {
 397         return MESSAGE_FACTORY.getMessage("runtime.modeler.portname.servicename.namespace.mismatch", arg0, arg1);
 398     }
 399 
 400     /**
 401      * The namespace of the serviceName "{0}" and the namespace of the portName "{1}" must match
 402      *
 403      */
 404     public static String RUNTIME_MODELER_PORTNAME_SERVICENAME_NAMESPACE_MISMATCH(Object arg0, Object arg1) {
 405         return LOCALIZER.localize(localizableRUNTIME_MODELER_PORTNAME_SERVICENAME_NAMESPACE_MISMATCH(arg0, arg1));
 406     }
 407 
 408     private static class BundleSupplier
 409         implements ResourceBundleSupplier
 410     {
 411 
 412 
 413         public ResourceBundle getResourceBundle(Locale locale) {
 414             return ResourceBundle.getBundle(BUNDLE_NAME, locale);
 415         }
 416 
 417     }
 418 
 419 }