Author: veithen
Date: Sat Mar 14 16:17:56 2009
New Revision: 754480
URL: http://svn.apache.org/viewvc?rev=754480&view=rev
Log:
Resurrected org.apache.axiom.om.impl.llom.util.NamespaceContextImpl as a
(deprecated) subclass of org.apache.axiom.om.impl.util.NamespaceContextImpl
since it is used by WS-Commons Transports.
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/util/NamespaceContextImpl.java
(with props)
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/util/NamespaceContextImpl.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/util/NamespaceContextImpl.java?rev=754480&view=auto
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/util/NamespaceContextImpl.java
(added)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/util/NamespaceContextImpl.java
Sat Mar 14 16:17:56 2009
@@ -0,0 +1,31 @@
+/*
+ * 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
+ *
+ * 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.axiom.om.impl.llom.util;
+
+import java.util.Map;
+
+/**
+ * @deprecated Use {...@link
org.apache.axiom.om.impl.util.NamespaceContextImpl} instead.
+ */
+public class NamespaceContextImpl extends
org.apache.axiom.om.impl.util.NamespaceContextImpl {
+ public NamespaceContextImpl(Map map) {
+ super(map);
+ }
+}
Propchange:
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/main/java/org/apache/axiom/om/impl/llom/util/NamespaceContextImpl.java
------------------------------------------------------------------------------
svn:eol-style = native