[dna-commits] DNA SVN: r927 - trunk/extensions/dna-connector-svn/src/main/java/org/jboss/dna/connector/svn.

dna-commits at lists.jboss.org dna-commits at lists.jboss.org
Fri May 22 09:19:37 EDT 2009


Author: spagop
Date: 2009-05-22 09:19:37 -0400 (Fri, 22 May 2009)
New Revision: 927

Modified:
   trunk/extensions/dna-connector-svn/src/main/java/org/jboss/dna/connector/svn/SVNRepositoryConnectorI18n.java
Log:
changes made to support workspace features

Modified: trunk/extensions/dna-connector-svn/src/main/java/org/jboss/dna/connector/svn/SVNRepositoryConnectorI18n.java
===================================================================
--- trunk/extensions/dna-connector-svn/src/main/java/org/jboss/dna/connector/svn/SVNRepositoryConnectorI18n.java	2009-05-22 13:19:21 UTC (rev 926)
+++ trunk/extensions/dna-connector-svn/src/main/java/org/jboss/dna/connector/svn/SVNRepositoryConnectorI18n.java	2009-05-22 13:19:37 UTC (rev 927)
@@ -1,69 +1,80 @@
-/*
- * JBoss DNA (http://www.jboss.org/dna)
- * See the COPYRIGHT.txt file distributed with this work for information
- * regarding copyright ownership.  Some portions may be licensed
- * to Red Hat, Inc. under one or more contributor license agreements.
-* See the AUTHORS.txt file in the distribution for a full listing of 
-* individual contributors.
- *
- * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
- * is licensed to you under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * JBoss DNA is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.dna.connector.svn;
-
-import java.util.Locale;
-import java.util.Set;
-import org.jboss.dna.common.i18n.I18n;
-
-/**
- * @author Serge Pagop
- */
-public final class SVNRepositoryConnectorI18n {
-
-    public static I18n connectorName;
-    public static I18n nodeDoesNotExist;
-    public static I18n nodeIsActuallyUnknow;
-    public static I18n nodeTypeIsNotSupported;
-    public static I18n propertyIsRequired;
-    public static I18n errorSerializingCachePolicyInSource;
-    public static I18n objectFoundInJndiWasNotCache;
-    public static I18n objectFoundInJndiWasNotCacheFactory;
-    public static I18n locationInRequestMustHavePath;
-    public static I18n sourceIsReadOnly;
-    public static I18n sourceDoesNotSupportCreatingWorkspaces;
-    public static I18n sourceDoesNotSupportCloningWorkspaces;
-    public static I18n sourceDoesNotSupportDeletingWorkspaces;
-    public static I18n connectingFailureOrUserAuthenticationProblem;
-
-    static {
-        try {
-            I18n.initialize(SVNRepositoryConnectorI18n.class);
-        } catch (final Exception err) {
-            System.err.println(err);
-        }
-    }
-
-    public static Set<Locale> getLocalizationProblemLocales() {
-        return I18n.getLocalizationProblemLocales(SVNRepositoryConnectorI18n.class);
-    }
-
-    public static Set<String> getLocalizationProblems() {
-        return I18n.getLocalizationProblems(SVNRepositoryConnectorI18n.class);
-    }
-
-    public static Set<String> getLocalizationProblems( Locale locale ) {
-        return I18n.getLocalizationProblems(SVNRepositoryConnectorI18n.class, locale);
-    }
-}
+/*
+ * JBoss DNA (http://www.jboss.org/dna)
+ * See the COPYRIGHT.txt file distributed with this work for information
+ * regarding copyright ownership.  Some portions may be licensed
+ * to Red Hat, Inc. under one or more contributor license agreements.
+* See the AUTHORS.txt file in the distribution for a full listing of 
+* individual contributors.
+ *
+ * JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+ * is licensed to you under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * JBoss DNA is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.dna.connector.svn;
+
+import java.util.Locale;
+import java.util.Set;
+import org.jboss.dna.common.i18n.I18n;
+
+/**
+ * @author Serge Pagop
+ */
+public final class SVNRepositoryConnectorI18n {
+
+    public static I18n connectorName;
+    public static I18n nodeDoesNotExist;
+    public static I18n nodeIsActuallyUnknow;
+    public static I18n nodeTypeIsNotSupported;
+    public static I18n propertyIsRequired;
+    public static I18n errorSerializingCachePolicyInSource;
+    public static I18n objectFoundInJndiWasNotCache;
+    public static I18n objectFoundInJndiWasNotCacheFactory;
+    public static I18n locationInRequestMustHavePath;
+    public static I18n sourceIsReadOnly;
+    public static I18n sourceDoesNotSupportCreatingWorkspaces;
+    public static I18n sourceDoesNotSupportCloningWorkspaces;
+    public static I18n sourceDoesNotSupportDeletingWorkspaces;
+    public static I18n connectingFailureOrUserAuthenticationProblem;
+    public static I18n pathForPredefinedWorkspaceDoesNotExist;
+    public static I18n pathForPredefinedWorkspaceIsNotDirectory;
+    public static I18n pathForPredefinedWorkspaceCannotBeRead;
+    public static I18n worspaceDoesNotExist;
+    public static I18n workspaceDoesNotExist;
+    public static I18n pathForDefaultWorkspaceDoesNotExist;
+    public static I18n pathForDefaultWorkspaceIsNotDirectory;
+    public static I18n pathForDefaultWorkspaceCannotBeRead;
+    public static I18n sameNameSiblingsAreNotAllowed;
+    public static I18n onlyTheDefaultNamespaceIsAllowed;
+    public static I18n unableToCreateWorkspaces;
+
+    static {
+        try {
+            I18n.initialize(SVNRepositoryConnectorI18n.class);
+        } catch (final Exception err) {
+            System.err.println(err);
+        }
+    }
+
+    public static Set<Locale> getLocalizationProblemLocales() {
+        return I18n.getLocalizationProblemLocales(SVNRepositoryConnectorI18n.class);
+    }
+
+    public static Set<String> getLocalizationProblems() {
+        return I18n.getLocalizationProblems(SVNRepositoryConnectorI18n.class);
+    }
+
+    public static Set<String> getLocalizationProblems( Locale locale ) {
+        return I18n.getLocalizationProblems(SVNRepositoryConnectorI18n.class, locale);
+    }
+}




More information about the dna-commits mailing list