Author: jdillon
Date: Sat Mar 3 15:21:39 2007
New Revision: 514266
URL: http://svn.apache.org/viewvc?view=rev&rev=514266
Log:
(GERONIMO-2735) Bring ExpressionParser from genesis/plugin-support over to the server to support
property expansion
Added:
geronimo/server/trunk/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/condition/ExpressionParser.java
- copied, changed from r514265, geronimo/genesis/tags/genesis-1.1/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/ExpressionParser.java
Copied: geronimo/server/trunk/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/condition/ExpressionParser.java
(from r514265, geronimo/genesis/tags/genesis-1.1/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/ExpressionParser.java)
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/condition/ExpressionParser.java?view=diff&rev=514266&p1=geronimo/genesis/tags/genesis-1.1/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/ExpressionParser.java&r1=514265&p2=geronimo/server/trunk/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/condition/ExpressionParser.java&r2=514266
==============================================================================
--- geronimo/genesis/tags/genesis-1.1/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/ExpressionParser.java
(original)
+++ geronimo/server/trunk/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/condition/ExpressionParser.java
Sat Mar 3 15:21:39 2007
@@ -1,23 +1,20 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
*
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
*/
-
-package org.apache.geronimo.genesis.util;
+package org.apache.geronimo.system.configuration.condition;
import java.util.Map;
|