Mercurial > dive4elements > http-client
changeset 72:133281653904 dive4elements-move
Renamed internal references.
line wrap: on
line diff
--- 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@intevation.de">Ingo Weinzierl</a>
--- 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;
--- 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@intevation.de">Ingo Weinzierl</a>
--- 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@intevation.de">Ingo Weinzierl</a>
--- 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; /**
--- 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; /**
--- 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;
--- 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;
--- 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;
--- 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.
--- 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 {
--- 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;
--- 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;
--- 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 {
--- 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;
--- 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;
--- 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;
--- 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;