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 */ 016package org.modeshape.jdbc; 017 018import org.modeshape.common.i18n.I18n; 019 020/** 021 * The internationalized string constants for the <code>org.modeshape.jdbc*</code> packages. 022 */ 023public final class JdbcLocalI18n { 024 025 public static I18n i18nClassInterface; 026 public static I18n i18nClassNotPublic; 027 public static I18n i18nFieldFinal; 028 public static I18n i18nFieldInvalidType; 029 public static I18n i18nFieldNotPublic; 030 public static I18n i18nFieldNotStatic; 031 public static I18n i18nLocalizationFileNotFound; 032 public static I18n i18nLocalizationProblems; 033 public static I18n i18nPropertyDuplicate; 034 public static I18n i18nPropertyMissing; 035 public static I18n i18nPropertyUnused; 036 public static I18n i18nRequiredToSuppliedParameterMismatch; 037 038 public static I18n driverName; 039 public static I18n driverVendor; 040 public static I18n driverVendorUrl; 041 public static I18n driverVersion; 042 043 public static I18n driverErrorRegistering; 044 045 /* 046 * ConnectionInfo related text info 047 */ 048 public static I18n usernamePropertyDescription; 049 public static I18n passwordPropertyDescription; 050 public static I18n workspaceNamePropertyDescription; 051 public static I18n repositoryNamePropertyDescription; 052 public static I18n urlPropertyDescription; 053 public static I18n urlPropertyName; 054 public static I18n usernamePropertyName; 055 public static I18n passwordPropertyName; 056 public static I18n workspaceNamePropertyName; 057 public static I18n repositoryNamePropertyName; 058 059 public static I18n invalidUrl; 060 public static I18n invalidUrlPrefix; 061 public static I18n failedToReadPropertiesFromManifest; 062 public static I18n unableToFindNamedRepository; 063 public static I18n noRepositoryNamesFound; 064 public static I18n argumentMayNotBeNegative; 065 public static I18n argumentMayNotBeNull; 066 067 public static I18n connectionIsClosed; 068 public static I18n statementIsClosed; 069 public static I18n resultSetIsClosed; 070 public static I18n resultSetIsForwardOnly; 071 public static I18n noSuchColumn; 072 public static I18n updatesNotSupported; 073 public static I18n timeoutMayNotBeNegative; 074 public static I18n classDoesNotImplementInterface; 075 public static I18n invalidClientInfo; 076 public static I18n invalidArgument; 077 public static I18n invalidColumnIndex; 078 public static I18n currentRowNotSet; 079 public static I18n noJcrTypeMapped; 080 public static I18n unableToGetNodeTypes; 081 public static I18n noNodeTypesReturned; 082 public static I18n unableToGetNodeType; 083 public static I18n noSuchNodeType; 084 085 public static I18n cannotConvertJcrValue; 086 087 public static I18n repositoryNameInUse; 088 089 /* 090 * JNDI connection option related text info 091 */ 092 public static I18n objectInJndiMustBeRepositoryOrRepositories; 093 public static I18n unableToGetJndiContext; 094 public static I18n urlMustContainJndiNameOfRepositoryOrRepositoriesObject; 095 public static I18n unableToFindObjectInJndi; 096 public static I18n objectInJndiIsRepositories; 097 098 /* 099 * File connection option relatd text info 100 */ 101 public static I18n configurationFileNotSpecified; 102 103 private JdbcLocalI18n() { 104 } 105 106 static { 107 try { 108 I18n.initialize(JdbcLocalI18n.class); 109 } catch (final Exception err) { 110 // CHECKSTYLE IGNORE check FOR NEXT 1 LINES 111 System.err.println(err); 112 } 113 } 114}