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.tools.internal.ws.resources;
  27 
  28 import java.util.Locale;
  29 import java.util.ResourceBundle;
  30 import com.sun.istack.internal.localization.Localizable;
  31 import com.sun.istack.internal.localization.LocalizableMessageFactory;
  32 import com.sun.istack.internal.localization.LocalizableMessageFactory.ResourceBundleSupplier;
  33 import com.sun.istack.internal.localization.Localizer;
  34 
  35 
  36 /**
  37  * Defines string formatting method for each constant in the resource file
  38  *
  39  */
  40 public final class NewmessagesMessages {
  41 
  42     private final static String BUNDLE_NAME = "com.sun.tools.internal.ws.resources.newmessages";
  43     private final static LocalizableMessageFactory MESSAGE_FACTORY = new LocalizableMessageFactory(BUNDLE_NAME, new NewmessagesMessages.BundleSupplier());
  44     private final static Localizer LOCALIZER = new Localizer();
  45 
  46     public static Localizable localizableRUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(Object arg0) {
  47         return MESSAGE_FACTORY.getMessage("runtime.modeler.addressing.responses.nosuchmethod", arg0);
  48     }
  49 
  50     /**
  51      * JAX-WS 2.1 API is loaded from {0}, But JAX-WS runtime requires JAX-WS 2.2 or newer API. Use the standard override mechanism to load JAX-WS 2.2 or newer API.
  52      *
  53      */
  54     public static String RUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(Object arg0) {
  55         return LOCALIZER.localize(localizableRUNTIME_MODELER_ADDRESSING_RESPONSES_NOSUCHMETHOD(arg0));
  56     }
  57 
  58     public static Localizable localizableWRAPPER_TASK_NEED_ENDORSED(Object arg0, Object arg1) {
  59         return MESSAGE_FACTORY.getMessage("wrapperTask.needEndorsed", arg0, arg1);
  60     }
  61 
  62     /**
  63      * You are running on JDK6 or newer which comes with JAX-WS {0} API, but this tool requires JAX-WS {1} or newer API. Use the standard override mechanism.
  64      *
  65      */
  66     public static String WRAPPER_TASK_NEED_ENDORSED(Object arg0, Object arg1) {
  67         return LOCALIZER.localize(localizableWRAPPER_TASK_NEED_ENDORSED(arg0, arg1));
  68     }
  69 
  70     private static class BundleSupplier
  71         implements ResourceBundleSupplier
  72     {
  73 
  74 
  75         public ResourceBundle getResourceBundle(Locale locale) {
  76             return ResourceBundle.getBundle(BUNDLE_NAME, locale);
  77         }
  78 
  79     }
  80 
  81 }