Example usage for java.util ResourceBundle getString

List of usage examples for java.util ResourceBundle getString

Introduction

In this page you can find the example usage for java.util ResourceBundle getString.

Prototype

public final String getString(String key) 

Source Link

Document

Gets a string for the given key from this resource bundle or one of its parents.

Usage

From source file:io.github.robwin.swagger2markup.builder.document.SecurityDocument.java

public SecurityDocument(Swagger2MarkupConfig swagger2MarkupConfig, String outputDirectory) {
    super(swagger2MarkupConfig, outputDirectory);

    ResourceBundle labels = ResourceBundle.getBundle("lang/labels",
            swagger2MarkupConfig.getOutputLanguage().toLocale());
    SECURITY = labels.getString("security");
    TYPE = labels.getString("security_type");
    NAME = labels.getString("security_name");
    IN = labels.getString("security_in");
    FLOW = labels.getString("security_flow");
    AUTHORIZATION_URL = labels.getString("security_authorizationUrl");
    TOKEN_URL = labels.getString("security_tokenUrl");
}

From source file:es.mityc.firmaJava.configuracion.DespliegueConfiguracionMng.java

/**
 * Constructor.//  www  .ja  v a2 s . c  om
 * 
 * Recupera los ficheros de configuracin que se utilizarn para el despliegue 
 */
protected DespliegueConfiguracionMng() {
    try {
        ResourceBundle rb = ResourceBundle.getBundle(ConstantesConfiguracion.STR_DESPLIEGUE);
        String files = rb.getString(ConstantesConfiguracion.STR_DESPLIEGUE_CONF_FILE);
        if (files != null) {
            StringTokenizer st = new StringTokenizer(files, ConstantesConfiguracion.COMA);
            props = new ArrayList<ResourceBundle>(st.countTokens());
            boolean hasNext = st.hasMoreTokens();
            while (hasNext) {
                String file = st.nextToken();
                hasNext = st.hasMoreTokens();
                try {
                    props.add(ResourceBundle.getBundle(file));
                } catch (MissingResourceException ex) {
                    log.debug(ST_NO_RECURSOS_FILE + ConstantesConfiguracion.ESPACIO + file);
                }
            }
        }
    } catch (MissingResourceException ex) {
        log.debug(ConstantesConfiguracion.STR_RECURSO_NO_DISPONIBLE, ex);
    }
}

From source file:org.shredzone.cilla.admin.ListBean.java

/**
 * Returns a list of available time precisions.
 *//*from w w  w  . j a  va  2 s .c  om*/
public List<SelectItem> createTimeDefinitionList() {
    ResourceBundle msg = getResourceBundle();

    return Arrays.stream(TimeDefinition.values()).map(TimeDefinition::name).map(value -> {
        String label = msg.getString("select.timedefinition." + value.toLowerCase());
        String description = msg.getString("select.timedefinition.tt." + value.toLowerCase());
        return new SelectItem(value, label, description);
    }).collect(toList());
}

From source file:es.pode.empaquetador.presentacion.avanzado.organizaciones.elementos.secuencia.SecuenciaControllerImpl.java

public final void submit(ActionMapping mapping,
        es.pode.empaquetador.presentacion.avanzado.organizaciones.elementos.secuencia.SubmitForm form,
        HttpServletRequest request, HttpServletResponse response) throws Exception {
    java.util.Locale locale = (Locale) request.getSession().getAttribute(ConstantesAgrega.DEFAULT_LOCALE);
    ResourceBundle i18n = ResourceBundle.getBundle("application-resources", locale);

    String accion = form.getAction();

    if (accion.equals(i18n.getString("portal_empaquetado_secuencia.aceptar"))) {
        if ((form.getChoice() == null) || (form.getChoiceExit() == null) || (form.getFlow() == null)
                || (form.getForwardOnly() == null)) {
            throw new ValidatorException("{portal_empaquetado.exception}");
        }/*from   w  ww  . ja  v a 2  s .  com*/
    }
}

From source file:hudson.Util.java

/**
 * Gets a human readable message for the given Win32 error code.
 *
 * @return//from ww  w. ja v a  2s. c om
 *      null if no such message is available.
 */
public static String getWin32ErrorMessage(int n) {
    try {
        ResourceBundle rb = ResourceBundle.getBundle("/hudson/win32errors");
        return rb.getString("error" + n);
    } catch (MissingResourceException e) {
        LOGGER.log(Level.WARNING, "Failed to find resource bundle", e);
        return null;
    }
}

From source file:es.pode.administracion.presentacion.estructuraseducativas.taxonomias.alta.AltaTaxonomiasControllerImpl.java

public final java.lang.String submit(ActionMapping mapping, SubmitForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
    String resultado = "";
    String action = form.getAction();
    //      String idioma=((Locale)request.getSession().getAttribute("org.apache.struts.action.LOCALE")).getLanguage();
    //      ResourceBundle i18n = ResourceBundle.getBundle("application-resources_"+idioma);
    Locale locale = (Locale) request.getSession().getAttribute("org.apache.struts.action.LOCALE");
    ResourceBundle i18n = ResourceBundle.getBundle("application-resources", locale);

    if (action != null) {
        if (action.equals(i18n.getString("estructuras.aceptar"))) {
            resultado = "ACEPTAR";
        } else if (action.equals(i18n.getString("estructuras.cancelar")))
            resultado = "CANCELAR";
    }//ww  w. ja  va2s  .  c  o  m
    return resultado;
}

From source file:es.pode.modificador.presentacion.informes.tarea.InformeTareaControllerImpl.java

public String submitConfirmacion(ActionMapping mapping, SubmitConfirmacionForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
    java.util.Locale locale = (java.util.Locale) request.getSession()
            .getAttribute(ConstantesAgrega.DEFAULT_LOCALE);
    ResourceBundle i18n = ResourceBundle.getBundle("application-resources", locale);
    String accion = form.getAction();
    if (accion.equals(i18n.getString("modificacionesEjecutadas.aceptar"))) {
        return "Aceptar";

    } else {/*  www  .  j  av a  2s.c om*/
        return "Cancelar";
    }
}

From source file:org.codehaus.mojo.chronos.chart.SummaryThroughputChartSource.java

private TimeSeriesCollection createThroughputDataset(ResourceBundle bundle, ReportConfig config) {
    TimeSeriesCollection dataset = new TimeSeriesCollection();
    TimeSeries series = samples.createMovingThroughput(bundle.getString("chronos.label.throughput"),
            config.getResponsetimedivider());
    dataset.addSeries(series);/* ww w  .  ja va  2 s .co  m*/
    int avgDuration = config.getAverageduration();
    String label = bundle.getString("chronos.label.average");
    TimeSeries averageseries = MovingAverage.createMovingAverage(series, label, avgDuration, 0);
    dataset.addSeries(averageseries);
    return dataset;
}

From source file:es.pode.empaquetador.presentacion.archivos.modificar.ModificarArchivoControllerImpl.java

/**
 * @see es.pode.empaquetador.presentacion.archivos.modificar.ModificarArchivoController#modificar(org.apache.struts.action.ActionMapping, es.pode.empaquetador.presentacion.archivos.modificar.ModificarForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
 *//*from  www . j av  a2 s  .co m*/
public final void modificar(ActionMapping mapping,
        es.pode.empaquetador.presentacion.archivos.modificar.ModificarForm form, HttpServletRequest request,
        HttpServletResponse response) throws Exception {
    EmpaquetadorSession sesEmpaq = this.getEmpaquetadorSession(request);
    GestorArchivosSession sesArch = this.getGestorArchivosSession(request);

    java.util.Locale locale = (Locale) request.getSession().getAttribute(ConstantesAgrega.DEFAULT_LOCALE);
    ResourceBundle i18n = ResourceBundle.getBundle("application-resources", locale);

    String opcion = form.getAction();

    if (opcion.equals(i18n.getString("portal_empaquetado.modificarNombre"))) {

        //nuevoNombre debe ser la concatenacin de la extensin y el nuevo nombre
        String extension = form.getExtension();
        String nuevoNombre;
        if (extension.equals("")) {
            nuevoNombre = form.getNuevoNombre();
        } else {
            StringBuffer nombre = new StringBuffer(form.getNuevoNombre());
            nombre.append(".").append(extension);
            nuevoNombre = nombre.toString();
        }
        GestorSesion gs = new GestorSesion();
        gs.validarNombreFichero(nuevoNombre);

        ArchivoVO archivo = (ArchivoVO) request.getSession().getAttribute("archivoVO");
        String nombre = archivo.getNombre();

        if (!extension.equals("")) {
            nombre = nombre + "." + extension;
        }

        if (!nombre.equals(nuevoNombre)) {

            // obtengo el identificador del ODEVO
            String identificador = sesEmpaq.getIdLocalizador();

            List path = sesArch.getPath();
            ArchivoVO ultimoPath = (ArchivoVO) path.get(path.size() - 1);
            // obtengo la carpetaDestino
            String carpetaPadre = null;
            if (path.size() > 1 && ultimoPath.getCarpetaPadre() == null) {
                carpetaPadre = ultimoPath.getNombre();
            } else if (path.size() > 1 && ultimoPath.getCarpetaPadre() != null) {
                carpetaPadre = ultimoPath.getCarpetaPadre().concat("/").concat(ultimoPath.getNombre());
            }

            try {
                this.getSrvEmpaquetadorBasicoService().renombrar(identificador, carpetaPadre, nombre,
                        nuevoNombre);
            } catch (Exception e) {
                throw new ValidatorException("{portalempaquetado.archivos.error.renombrar}");
            }
        }
    }
}

From source file:ispok.valid.VisitorEmailExistValidator.java

@Override
public void validate(FacesContext fc, UIComponent uic, Object o) throws ValidatorException {

    ResourceBundle rb = ResourceBundle.getBundle("ispok/pres/inter/ispok", fc.getViewRoot().getLocale());

    if (!visitorService.emailAvailable(o.toString())) {
        throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, rb.getString("email_taken"),
                rb.getString("email_taken")));
    }//from   w  w w.ja  v  a 2 s.c  o m
}