[Dive4elements-commits] [PATCH 2 of 3] Renamed internal references
Wald Commits
scm-commit at wald.intevation.org
Thu Apr 25 11:16:30 CEST 2013
# HG changeset patch
# User Sascha L. Teichmann <teichmann at intevation.de>
# Date 1366881315 -7200
# Node ID 133281653904914090543e8334162e93d194216e
# Parent a857866d162f54b1e881ab4e281c0bc5dab5a29b
Renamed internal references.
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/ConsoleClient.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/ConsoleClient.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/ConsoleClient.java Thu Apr 25 11:15:15 2013 +0200
@@ -6,7 +6,7 @@
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient;
+package org.dive4elements.artifacts.httpclient;
import java.io.IOException;
import java.io.File;
@@ -30,17 +30,17 @@
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;
-import de.intevation.artifacts.httpclient.http.HttpClient;
-import de.intevation.artifacts.httpclient.http.HttpClientImpl;
-import de.intevation.artifacts.httpclient.http.response.DocumentResponseHandler;
+import org.dive4elements.artifacts.httpclient.http.HttpClient;
+import org.dive4elements.artifacts.httpclient.http.HttpClientImpl;
+import org.dive4elements.artifacts.httpclient.http.response.DocumentResponseHandler;
-import de.intevation.artifacts.httpclient.exceptions.ConnectionException;
-import de.intevation.artifacts.httpclient.exceptions.NoSuchOptionException;
-import de.intevation.artifacts.httpclient.objects.Artifact;
-import de.intevation.artifacts.httpclient.utils.ArtifactProtocolUtils;
-import de.intevation.artifacts.httpclient.utils.Configuration;
-import de.intevation.artifacts.httpclient.utils.XFormNamespaceContext;
-import de.intevation.artifacts.httpclient.utils.XMLUtils;
+import org.dive4elements.artifacts.httpclient.exceptions.ConnectionException;
+import org.dive4elements.artifacts.httpclient.exceptions.NoSuchOptionException;
+import org.dive4elements.artifacts.httpclient.objects.Artifact;
+import org.dive4elements.artifacts.httpclient.utils.ArtifactProtocolUtils;
+import org.dive4elements.artifacts.httpclient.utils.Configuration;
+import org.dive4elements.artifacts.httpclient.utils.XFormNamespaceContext;
+import org.dive4elements.artifacts.httpclient.utils.XMLUtils;
/**
* @author <a href="mailto:ingo.weinzierl at intevation.de">Ingo Weinzierl</a>
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/exceptions/ConnectionException.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/exceptions/ConnectionException.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/exceptions/ConnectionException.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.exceptions;
+package org.dive4elements.artifacts.httpclient.exceptions;
import java.io.IOException;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/exceptions/NoSuchOptionException.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/exceptions/NoSuchOptionException.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/exceptions/NoSuchOptionException.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.exceptions;
+package org.dive4elements.artifacts.httpclient.exceptions;
/**
* @author <a href="mailto:ingo.weinzierl at intevation.de">Ingo Weinzierl</a>
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClient.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClient.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClient.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,18 +5,18 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.http;
+package org.dive4elements.artifacts.httpclient.http;
import java.io.InputStream;
import java.io.OutputStream;
import org.w3c.dom.Document;
-import de.intevation.artifacts.httpclient.exceptions.ConnectionException;
-import de.intevation.artifacts.httpclient.http.response.ResponseHandler;
-import de.intevation.artifacts.httpclient.objects.Artifact;
-import de.intevation.artifacts.httpclient.objects.ArtifactFactory;
-import de.intevation.artifacts.httpclient.utils.ArtifactCreator;
+import org.dive4elements.artifacts.httpclient.exceptions.ConnectionException;
+import org.dive4elements.artifacts.httpclient.http.response.ResponseHandler;
+import org.dive4elements.artifacts.httpclient.objects.Artifact;
+import org.dive4elements.artifacts.httpclient.objects.ArtifactFactory;
+import org.dive4elements.artifacts.httpclient.utils.ArtifactCreator;
/**
* @author <a href="mailto:ingo.weinzierl at intevation.de">Ingo Weinzierl</a>
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.http;
+package org.dive4elements.artifacts.httpclient.http;
import java.io.InputStream;
import java.io.IOException;
@@ -30,14 +30,14 @@
import org.w3c.dom.Document;
-import de.intevation.artifacts.httpclient.exceptions.ConnectionException;
-import de.intevation.artifacts.httpclient.http.response.DocumentResponseHandler;
-import de.intevation.artifacts.httpclient.http.response.ResponseHandler;
-import de.intevation.artifacts.httpclient.http.response.StreamResponseHandler;
-import de.intevation.artifacts.httpclient.objects.Artifact;
-import de.intevation.artifacts.httpclient.objects.ArtifactFactory;
-import de.intevation.artifacts.httpclient.utils.ArtifactProtocolUtils;
-import de.intevation.artifacts.httpclient.utils.ArtifactCreator;
+import org.dive4elements.artifacts.httpclient.exceptions.ConnectionException;
+import org.dive4elements.artifacts.httpclient.http.response.DocumentResponseHandler;
+import org.dive4elements.artifacts.httpclient.http.response.ResponseHandler;
+import org.dive4elements.artifacts.httpclient.http.response.StreamResponseHandler;
+import org.dive4elements.artifacts.httpclient.objects.Artifact;
+import org.dive4elements.artifacts.httpclient.objects.ArtifactFactory;
+import org.dive4elements.artifacts.httpclient.utils.ArtifactProtocolUtils;
+import org.dive4elements.artifacts.httpclient.utils.ArtifactCreator;
/**
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/http/response/DocumentResponseHandler.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/response/DocumentResponseHandler.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/response/DocumentResponseHandler.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,14 +5,14 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.http.response;
+package org.dive4elements.artifacts.httpclient.http.response;
import java.io.IOException;
import org.restlet.Response;
import org.restlet.representation.Representation;
-import de.intevation.artifacts.httpclient.utils.XMLUtils;
+import org.dive4elements.artifacts.httpclient.utils.XMLUtils;
/**
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/http/response/ResponseHandler.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/response/ResponseHandler.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/response/ResponseHandler.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.http.response;
+package org.dive4elements.artifacts.httpclient.http.response;
import java.io.IOException;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/http/response/StreamResponseHandler.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/response/StreamResponseHandler.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/response/StreamResponseHandler.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.http.response;
+package org.dive4elements.artifacts.httpclient.http.response;
import java.io.IOException;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/http/response/StringResponseHandler.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/response/StringResponseHandler.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/response/StringResponseHandler.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.http.response;
+package org.dive4elements.artifacts.httpclient.http.response;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/objects/Artifact.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/objects/Artifact.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/objects/Artifact.java Thu Apr 25 11:15:15 2013 +0200
@@ -6,7 +6,7 @@
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.objects;
+package org.dive4elements.artifacts.httpclient.objects;
/**
* An <code>ArtifactObject</code> representing an artifact.
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/objects/ArtifactFactory.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/objects/ArtifactFactory.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/objects/ArtifactFactory.java Thu Apr 25 11:15:15 2013 +0200
@@ -6,7 +6,7 @@
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.objects;
+package org.dive4elements.artifacts.httpclient.objects;
public class ArtifactFactory {
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactCreator.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactCreator.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactCreator.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.utils;
+package org.dive4elements.artifacts.httpclient.utils;
import org.w3c.dom.Document;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactNamespaceContext.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactNamespaceContext.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactNamespaceContext.java Thu Apr 25 11:15:15 2013 +0200
@@ -6,7 +6,7 @@
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.utils;
+package org.dive4elements.artifacts.httpclient.utils;
import java.util.Iterator;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactProtocolUtils.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactProtocolUtils.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/utils/ArtifactProtocolUtils.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.utils;
+package org.dive4elements.artifacts.httpclient.utils;
import java.util.Map;
@@ -17,8 +17,8 @@
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
-import de.intevation.artifacts.httpclient.objects.Artifact;
-import de.intevation.artifacts.httpclient.objects.ArtifactFactory;
+import org.dive4elements.artifacts.httpclient.objects.Artifact;
+import org.dive4elements.artifacts.httpclient.objects.ArtifactFactory;
public class ArtifactProtocolUtils {
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/utils/Configuration.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/utils/Configuration.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/utils/Configuration.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.utils;
+package org.dive4elements.artifacts.httpclient.utils;
import java.io.File;
import java.io.FileInputStream;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/utils/XFormNamespaceContext.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/utils/XFormNamespaceContext.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/utils/XFormNamespaceContext.java Thu Apr 25 11:15:15 2013 +0200
@@ -6,7 +6,7 @@
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.utils;
+package org.dive4elements.artifacts.httpclient.utils;
import java.util.Iterator;
diff -r a857866d162f -r 133281653904 src/main/java/org/dive4elements/artifacts/httpclient/utils/XMLUtils.java
--- a/src/main/java/org/dive4elements/artifacts/httpclient/utils/XMLUtils.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/main/java/org/dive4elements/artifacts/httpclient/utils/XMLUtils.java Thu Apr 25 11:15:15 2013 +0200
@@ -6,7 +6,7 @@
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient.utils;
+package org.dive4elements.artifacts.httpclient.utils;
import java.io.IOException;
import java.io.InputStream;
diff -r a857866d162f -r 133281653904 src/test/java/org/dive4elements/artifacts/httpclient/ConsoleClientTest.java
--- a/src/test/java/org/dive4elements/artifacts/httpclient/ConsoleClientTest.java Thu Apr 25 11:14:14 2013 +0200
+++ b/src/test/java/org/dive4elements/artifacts/httpclient/ConsoleClientTest.java Thu Apr 25 11:15:15 2013 +0200
@@ -5,7 +5,7 @@
* Read the file LGPL.txt coming with the software for details
* or visit http://www.gnu.org/licenses/ if it does not exist.
*/
-package de.intevation.artifacts.httpclient;
+package org.dive4elements.artifacts.httpclient;
import junit.framework.Test;
import junit.framework.TestCase;
More information about the Dive4elements-commits
mailing list