You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by rr...@apache.org on 2009/09/11 17:07:51 UTC

svn commit: r813870 [15/15] - in /ode/branches/APACHE_ODE_1.X: ./ agents/src/main/java/org/apache/ode/agents/memory/ agents/src/main/resources/META-INF/ axis2-war/src/main/webapp/ axis2-war/src/main/webapp/WEB-INF/ axis2-war/src/main/webapp/WEB-INF/cla...

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/CronExpression.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/DOMUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/DbIsolation.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/GUID.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/HierarchicalProperties.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/ISO8601DateParser.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/InternPool.java
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/InternPool.java?rev=813870&r1=813869&r2=813870&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/InternPool.java (original)
+++ ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/InternPool.java Fri Sep 11 15:07:05 2009
@@ -17,107 +17,107 @@
  * under the License.
  */
 
-package org.apache.ode.utils;
-
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
-
-import org.apache.commons.collections.map.LRUMap;
-import org.apache.commons.collections.map.MultiKeyMap;
-
-
-/**
- * A key value based cache that internalizes immutable values 
- * so that they can be shared across various BPEL objects. 
- *
-  */
-public class InternPool {
-    private static MultiKeyMap cachedValues = MultiKeyMap.decorate(new LRUMap());
-    private static Set<String> cachedBlocks = Collections.synchronizedSet(new HashSet<String>());
-
-    /**
-     * Creates a new KeyValueCache object.
-     */
-    protected InternPool() {
-    }
-
-    /**
-     * Runs the given block in the context of a cache.
-     * If you do not run your block this way, the caching
-     * mechanism will be disabled.    
-     *
-     * @param block block 
-     */
-    public static void runBlock(InternableBlock block) {
-        String processId = getProcessId();
-        cachedBlocks.add(processId);
-        block.run();
-        cachedBlocks.remove(processId);
-        clearAll(processId);
-    }
-
-    /**
-     * Returns an internalized value if it already exists in the cache
-     *
-     * @param value value 
-     *
-     * @return the internalized value
-     */
-    public static Object intern(Object key, Object value) {
-        String processId = getProcessId();
-
-        if (!cachedBlocks.contains(processId)) {
-        	return value;
-        }
-        
-        synchronized (cachedValues) {
-            List values = (List) cachedValues.get(processId, key);
-            if (values == null) {
-            	cachedValues.put(processId, key, (values = new ArrayList()));
-            }
-
-            Object intern;
-            if (values.contains(value)) {
-            	intern = values.get(values.indexOf(value));
-            } else {
-            	values.add(intern = value);            	
-            }
-
-            return intern;
-        }
-    }
-
-    /**
-     * Clears all the values corresponding to the given process
-     *
-     * @param processId processId 
-     */
-    protected static void clearAll(String processId) {
-        synchronized (cachedValues) {
-            cachedValues.remove(processId);
-        }
-    }
-
-    /**
-     * Returns the current thread id as the process id.
-     *
-     * @return the "process id"
-     */
-    private static String getProcessId() {
-        return String.valueOf(Thread.currentThread().getId());
-    }
-
-    /**
-     * An interface that clients should implement to run their
-     * blocks of code in the context of this caching mechanism. 
-     */
-    public interface InternableBlock {
-        /**
-         * The block to run
-         */
-        public void run();
-    }
-}
+package org.apache.ode.utils;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+import org.apache.commons.collections.map.LRUMap;
+import org.apache.commons.collections.map.MultiKeyMap;
+
+
+/**
+ * A key value based cache that internalizes immutable values 
+ * so that they can be shared across various BPEL objects. 
+ *
+  */
+public class InternPool {
+    private static MultiKeyMap cachedValues = MultiKeyMap.decorate(new LRUMap());
+    private static Set<String> cachedBlocks = Collections.synchronizedSet(new HashSet<String>());
+
+    /**
+     * Creates a new KeyValueCache object.
+     */
+    protected InternPool() {
+    }
+
+    /**
+     * Runs the given block in the context of a cache.
+     * If you do not run your block this way, the caching
+     * mechanism will be disabled.    
+     *
+     * @param block block 
+     */
+    public static void runBlock(InternableBlock block) {
+        String processId = getProcessId();
+        cachedBlocks.add(processId);
+        block.run();
+        cachedBlocks.remove(processId);
+        clearAll(processId);
+    }
+
+    /**
+     * Returns an internalized value if it already exists in the cache
+     *
+     * @param value value 
+     *
+     * @return the internalized value
+     */
+    public static Object intern(Object key, Object value) {
+        String processId = getProcessId();
+
+        if (!cachedBlocks.contains(processId)) {
+        	return value;
+        }
+        
+        synchronized (cachedValues) {
+            List values = (List) cachedValues.get(processId, key);
+            if (values == null) {
+            	cachedValues.put(processId, key, (values = new ArrayList()));
+            }
+
+            Object intern;
+            if (values.contains(value)) {
+            	intern = values.get(values.indexOf(value));
+            } else {
+            	values.add(intern = value);            	
+            }
+
+            return intern;
+        }
+    }
+
+    /**
+     * Clears all the values corresponding to the given process
+     *
+     * @param processId processId 
+     */
+    protected static void clearAll(String processId) {
+        synchronized (cachedValues) {
+            cachedValues.remove(processId);
+        }
+    }
+
+    /**
+     * Returns the current thread id as the process id.
+     *
+     * @return the "process id"
+     */
+    private static String getProcessId() {
+        return String.valueOf(Thread.currentThread().getId());
+    }
+
+    /**
+     * An interface that clients should implement to run their
+     * blocks of code in the context of this caching mechanism. 
+     */
+    public interface InternableBlock {
+        /**
+         * The block to run
+         */
+        public void run();
+    }
+}

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/InternPool.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/LoggingInterceptor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/NSContext.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/NamespaceStack.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/Namespaces.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/ObjectPrinter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/ProcessMutex.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/Properties.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/QNameUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/Reflect.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/RelativeDateParser.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/SchemaBucket.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/SerializableElement.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/SerializableUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/StreamUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/SystemConfigurationException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/SystemUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/URITemplate.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/Version.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/VersionMessages.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/WatchDog.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/Argument.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/BaseCommandlineTool.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/CommandLineMessages.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/CommandlineFragment.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/CommandlineSyntaxException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/ConsoleFormatter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/Flag.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/FlagWithArgument.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/Fragments.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/LastArgument.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/Main.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/MultiArgument.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/XorGroup.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/cli/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/fs/FileUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/fs/TempFileManager.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/http/HttpUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/http/StatusCode.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/jmx/JMXConstants.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/jmx/SimpleMBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/msg/CommonMessages.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/msg/MessageBundle.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/msg/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/package.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/rmi/RMIConstants.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/sax/FailOnErrorErrorHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/sax/IgnoreAllErrorHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/sax/LoggingErrorHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/sax/PrintErrorHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/BinaryFunction.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/CollectionsX.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/CompositeUnaryFunction.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/EnumerationIterator.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/EqualsUnaryFunction.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/FilterIterator.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/IteratorEnumeration.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/MemberOfFunction.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/TransformIterator.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/UnaryFunction.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/stl/UnaryFunctionEx.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/trax/LogErrorListener.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/uuid/UUID.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/uuid/UUIDGen.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/wsdl/Messages.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/wsdl/WsdlUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xml/capture/MultiplexTracker.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xml/capture/Tracker.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xml/capture/Wsdl11Tracker.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xml/capture/XmlDependencyScanner.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xml/capture/XmlSchemaTracker.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/CapturingXMLEntityResolver.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/DefaultXMLEntityResolver.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/Duration.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/LoggingXmlErrorHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/SchemaModel.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/SchemaModelImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/XSTypes.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/XSUtils.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/XsdException.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/java/org/apache/ode/utils/xsd/XsdMessages.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/main/resources/org/apache/ode/utils/wsdl.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/DOMUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/HierarchicalPropertiesTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/ISO8601DateParserTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/NamespaceContextImplTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/SystemUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/TestResources.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/URITemplateTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/XMLParserUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/cli/CommandlineTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/fs/FileUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/fs/TempFileManagerTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/msg/MessageBundleTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/msg/MessageBundleTestMessages.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/msg/MessageBundleTestMessages_de.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/stl/CollectionsXTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/wsdl/WsdlUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/xsd/DurationTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/xsd/SchemaCaptureTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/xsd/retailOrderBad.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/java/org/apache/ode/utils/xsd/retailOrderGood.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/Configuration.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/Configuration.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/RetailCatalog.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/RetailOrder.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/Warehouse.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/Warehouse.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/WarehouseImpl.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/bad_xml.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/bad_xml_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/bpel-example-wsdl-1-bad-plink.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/bpel-example-wsdl-1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/bpel-partner-link.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/bpel-property.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/circular1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/circular2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/circular3.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/circular4.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_bad_wsdl_inner1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_bad_wsdl_inner2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_bad_wsdl_outer.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_missing_import_wsdl_inner1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_missing_import_wsdl_inner2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_missing_import_wsdl_outer.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_wsdl_R2005_inner1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_wsdl_R2005_inner2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_wsdl_R2005_outer.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_wsdl_inner1.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_wsdl_inner2.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/deep_wsdl_outer.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/dummyXML.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/empty.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/empty.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/good_import.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/good_wsdl_bad_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/good_xml_not_wsdl.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/hierarchical-1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/hierarchical-2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/hierarchical-bad.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/invalid_but_well_formed.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/loanApprovalProcess.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/missing_import.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/missing_imported_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/missing_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/missing_schema_import_wrapper.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/namespace_from_wsdl_to_xsd.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/non_ws-i_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/non_ws-i_schema_import_wrapper.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/not_schema_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/plain_old_xml_document.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/retailer.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/schema.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/soap-envelope.xsd
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/ws-i_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/wsdl-utils.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ode/branches/APACHE_ODE_1.X/utils/src/test/resources/wsdl_deep_schema_import.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native