001/*
002 * ModeShape (http://www.modeshape.org)
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *       http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.modeshape.web.jcr;
018
019import org.modeshape.common.annotation.Immutable;
020import org.modeshape.common.i18n.I18n;
021
022/**
023 * The internationalized string constants for the <code>org.modeshape.web.jcr*</code> packages.
024 * 
025 * @author Horia Chiorean (hchiorea@redhat.com)
026 */
027@Immutable
028public class WebJcrI18n {
029    public static I18n repositoriesContainerNotFoundInClasspath;
030    public static I18n cannotInitializeRepository;
031    public static I18n repositoryNotFound;
032    public static I18n cannotLoadRepositoryNames;
033
034    private WebJcrI18n() {
035    }
036
037    static {
038        try {
039            I18n.initialize(WebJcrI18n.class);
040        } catch (final Exception err) {
041            // CHECKSTYLE IGNORE check FOR NEXT 1 LINES
042            System.err.println(err);
043        }
044    }
045}