Skip to content

Commit

Permalink
Update package name to com.widen.urlbuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed May 9, 2019
1 parent cfc56eb commit 0b54439
Show file tree
Hide file tree
Showing 15 changed files with 37 additions and 37 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

/**
* <p>Encodes and decodes to and from Base64 notation.</p>
Expand Down Expand Up @@ -644,8 +644,8 @@ public static String encodeObject( java.io.Serializable serializableObject )
* @param serializableObject The object to encode
* @param options Specified options
* @return The Base64-encoded object
* @see com.widen.util.Base64#GZIP
* @see com.widen.util.Base64#DO_BREAK_LINES
* @see com.widen.urlbuilder.Base64#GZIP
* @see com.widen.urlbuilder.Base64#DO_BREAK_LINES
* @throws java.io.IOException if there is an error
* @since 2.0
*/
Expand Down Expand Up @@ -750,8 +750,8 @@ public static String encodeBytes( byte[] source ) {
* @param source The data to convert
* @param options Specified options
* @return The Base64-encoded data as a String
* @see com.widen.util.Base64#GZIP
* @see com.widen.util.Base64#DO_BREAK_LINES
* @see com.widen.urlbuilder.Base64#GZIP
* @see com.widen.urlbuilder.Base64#DO_BREAK_LINES
* @throws java.io.IOException if there is an error
* @throws NullPointerException if source array is null
* @since 2.0
Expand Down Expand Up @@ -820,8 +820,8 @@ public static String encodeBytes( byte[] source, int off, int len ) {
* @param len Length of data to convert
* @param options Specified options
* @return The Base64-encoded data as a String
* @see com.widen.util.Base64#GZIP
* @see com.widen.util.Base64#DO_BREAK_LINES
* @see com.widen.urlbuilder.Base64#GZIP
* @see com.widen.urlbuilder.Base64#DO_BREAK_LINES
* @throws java.io.IOException if there is an error
* @throws NullPointerException if source array is null
* @throws IllegalArgumentException if source array, offset, or length are invalid
Expand Down Expand Up @@ -876,8 +876,8 @@ public static byte[] encodeBytesToBytes( byte[] source ) {
* @param len Length of data to convert
* @param options Specified options
* @return The Base64-encoded data as a String
* @see com.widen.util.Base64#GZIP
* @see com.widen.util.Base64#DO_BREAK_LINES
* @see com.widen.urlbuilder.Base64#GZIP
* @see com.widen.urlbuilder.Base64#DO_BREAK_LINES
* @throws java.io.IOException if there is an error
* @throws NullPointerException if source array is null
* @throws IllegalArgumentException if source array, offset, or length are invalid
Expand Down Expand Up @@ -1631,11 +1631,11 @@ public static void decodeFileToFile( String infile, String outfile )


/**
* A {@link com.widen.util.Base64.InputStream} will read data from another
* A {@link com.widen.urlbuilder.Base64.InputStream} will read data from another
* <tt>java.io.InputStream</tt>, given in the constructor,
* and encode/decode to/from Base64 notation on the fly.
*
* @see com.widen.util.Base64
* @see com.widen.urlbuilder.Base64
* @since 1.3
*/
public static class InputStream extends java.io.FilterInputStream {
Expand All @@ -1652,7 +1652,7 @@ public static class InputStream extends java.io.FilterInputStream {


/**
* Constructs a {@link com.widen.util.Base64.InputStream} in DECODE mode.
* Constructs a {@link com.widen.urlbuilder.Base64.InputStream} in DECODE mode.
*
* @param in the <tt>java.io.InputStream</tt> from which to read data.
* @since 1.3
Expand All @@ -1663,7 +1663,7 @@ public InputStream( java.io.InputStream in ) {


/**
* Constructs a {@link com.widen.util.Base64.InputStream} in
* Constructs a {@link com.widen.urlbuilder.Base64.InputStream} in
* either ENCODE or DECODE mode.
* <p>
* Valid options:<pre>
Expand All @@ -1677,9 +1677,9 @@ public InputStream( java.io.InputStream in ) {
*
* @param in the <tt>java.io.InputStream</tt> from which to read data.
* @param options Specified options
* @see com.widen.util.Base64#ENCODE
* @see com.widen.util.Base64#DECODE
* @see com.widen.util.Base64#DO_BREAK_LINES
* @see com.widen.urlbuilder.Base64#ENCODE
* @see com.widen.urlbuilder.Base64#DECODE
* @see com.widen.urlbuilder.Base64#DO_BREAK_LINES
* @since 2.0
*/
public InputStream( java.io.InputStream in, int options ) {
Expand Down Expand Up @@ -1844,11 +1844,11 @@ else if( i == 0 ) {


/**
* A {@link com.widen.util.Base64.OutputStream} will write data to another
* A {@link com.widen.urlbuilder.Base64.OutputStream} will write data to another
* <tt>java.io.OutputStream</tt>, given in the constructor,
* and encode/decode to/from Base64 notation on the fly.
*
* @see com.widen.util.Base64
* @see com.widen.urlbuilder.Base64
* @since 1.3
*/
public static class OutputStream extends java.io.FilterOutputStream {
Expand All @@ -1865,7 +1865,7 @@ public static class OutputStream extends java.io.FilterOutputStream {
private byte[] decodabet; // Local copies to avoid extra method calls

/**
* Constructs a {@link com.widen.util.Base64.OutputStream} in ENCODE mode.
* Constructs a {@link com.widen.urlbuilder.Base64.OutputStream} in ENCODE mode.
*
* @param out the <tt>java.io.OutputStream</tt> to which data will be written.
* @since 1.3
Expand All @@ -1876,7 +1876,7 @@ public OutputStream( java.io.OutputStream out ) {


/**
* Constructs a {@link com.widen.util.Base64.OutputStream} in
* Constructs a {@link com.widen.urlbuilder.Base64.OutputStream} in
* either ENCODE or DECODE mode.
* <p>
* Valid options:<pre>
Expand All @@ -1889,9 +1889,9 @@ public OutputStream( java.io.OutputStream out ) {
*
* @param out the <tt>java.io.OutputStream</tt> to which data will be written.
* @param options Specified options.
* @see com.widen.util.Base64#ENCODE
* @see com.widen.util.Base64#DECODE
* @see com.widen.util.Base64#DO_BREAK_LINES
* @see com.widen.urlbuilder.Base64#ENCODE
* @see com.widen.urlbuilder.Base64#DECODE
* @see com.widen.urlbuilder.Base64#DO_BREAK_LINES
* @since 1.3
*/
public OutputStream( java.io.OutputStream out, int options ) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.io.InputStream;
import java.io.StringReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.security.PrivateKey;
import java.security.Signature;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

/**
* GET URLs require conversion to preserve special characters. By default the {@link BuiltinEncoder} is used.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.io.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

/**
* Encoder that performs no encoding -- simply passing the text value back unmodified.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* 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 com.widen.util;
package com.widen.urlbuilder;

import java.security.SignatureException;
import java.util.Date;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.util.Collection;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* 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 com.widen.util;
package com.widen.urlbuilder;

import java.net.MalformedURLException;
import java.net.URL;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.io.IOException;
import java.security.PrivateKey;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.widen.util;
package com.widen.urlbuilder;

import java.util.Date;
import java.util.concurrent.TimeUnit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* 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 com.widen.util;
package com.widen.urlbuilder;

import org.junit.Test;

Expand Down

0 comments on commit 0b54439

Please sign in to comment.