[jboss-svn-commits] JBL Code SVN: r5448 - labs/jbossesb/trunk/product/core/common/src/org/jboss/soa/esb/parameters

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Aug 3 13:15:14 EDT 2006


Author: tfennelly
Date: 2006-08-03 13:15:13 -0400 (Thu, 03 Aug 2006)
New Revision: 5448

Removed:
   labs/jbossesb/trunk/product/core/common/src/org/jboss/soa/esb/parameters/ParamName.java
Log:
deleted - internal to the File Repository now

Deleted: labs/jbossesb/trunk/product/core/common/src/org/jboss/soa/esb/parameters/ParamName.java
===================================================================
--- labs/jbossesb/trunk/product/core/common/src/org/jboss/soa/esb/parameters/ParamName.java	2006-08-03 17:12:47 UTC (rev 5447)
+++ labs/jbossesb/trunk/product/core/common/src/org/jboss/soa/esb/parameters/ParamName.java	2006-08-03 17:15:13 UTC (rev 5448)
@@ -1,59 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2006, JBoss Inc., and individual contributors as indicated
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * 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.
- *
- * This software 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.soa.esb.parameters;
-
-import java.util.Properties;
-
-import javax.naming.CompoundName;
-import javax.naming.InvalidNameException;
-
-/**
- * Parameter Name.
- * <p/>
- * Represents a compound parameter name - from a hierarchical namespace.  
- * <h4 id="syntax">Parameter Name Format</h4>
- * The syntax of the parameter name is expected to be in "directory" format,
- * read from left to right, where the syntax seperator character is '/' 
- * e.g. "com/acme/ParameterX".
- * 
- * @author <a href="mailto:tom.fennelly at jboss.com">tom.fennelly at jboss.com</a>
- */
-public class ParamName extends CompoundName {
-
-	private static final long serialVersionUID = 1L;
-	private static final Properties nameSyntaxProperties = new Properties();
-	static {
-		nameSyntaxProperties.setProperty("jndi.syntax.direction", "left_to_right");
-		nameSyntaxProperties.setProperty("jndi.syntax.separator", "/");
-	};
-	
-	/**
-	 * Public Constructor.
-	 * @param name The name of the parameter, specified according to the
-	 * <a href="#syntax">defined syntax</a>.
-	 * @throws InvalidNameException The supplied name violates the
-	 * <a href="#syntax">defined syntax</a>.
-	 */
-	public ParamName(String name) throws InvalidNameException {
-		super(name, nameSyntaxProperties);
-	}
-}




More information about the jboss-svn-commits mailing list