Encodes and decodes to and from Base64 notation.
*Homepage: http://iharder.net/base64.
* - *The options parameter, which appears in a few places, is used to pass + *
The options parameter, which appears in a few places, is used to pass * several pieces of information to the encoder. In the "higher level" methods such as * encodeBytes( bytes, options ) the options parameter can be used to indicate such * things as first gzipping the bytes before encoding them, not inserting linefeeds @@ -53,9 +53,9 @@ * when data that's being decoded is gzip-compressed and will decompress it * automatically. Generally things are cleaner. You'll probably have to * change some method calls that you were making to support the new - * options format (ints that you "OR" together). + * options format (int(s) that you "OR" together). *
* Valid options:
* GZIP: gzip-compresses object before encoding it.
@@ -1049,7 +1049,7 @@ public static byte[] decode( String s, int options )
/**
* Attempts to decode Base64 data and deserialize a Java
- * Object within. Returns null if there was an error.
+ * Object within. Returns null if there was an error.
*
* @param encodedObject The Base64 data to decode
* @return The decoded and deserialized object
@@ -1097,7 +1097,7 @@ public static Object decodeToObject( String encodedObject )
*
* @param dataToEncode byte array of data to encode in base64 form
* @param filename Filename for saving encoded data
- * @return true if successful, false otherwise
+ * @return true if successful, false otherwise
*
* @since 2.1
*/
@@ -1131,7 +1131,7 @@ public static boolean encodeToFile( byte[] dataToEncode, String filename )
*
* @param dataToDecode Base64-encoded data as a string
* @param filename Filename for saving decoded data
- * @return true if successful, false otherwise
+ * @return true if successful, false otherwise
*
* @since 2.1
*/
@@ -1268,7 +1268,7 @@ public static String encodeFromFile( String filename )
/**
- * Reads infile and encodes it to outfile.
+ * Reads infile and encodes it to outfile.
*
* @param infile Input file
* @param outfile Output file
@@ -1305,7 +1305,7 @@ public static boolean encodeFileToFile( String infile, String outfile )
/**
- * Reads infile and decodes it to outfile.
+ * Reads infile and decodes it to outfile.
*
* @param infile Input file
* @param outfile Output file
@@ -1346,7 +1346,7 @@ public static boolean decodeFileToFile( String infile, String outfile )
/**
* A {@link Base64.InputStream} will read data from another
- * java.io.InputStream, given in the constructor,
+ * {@link java.io.InputStream}, given in the constructor,
* and encode/decode to/from Base64 notation on the fly.
*
* @see Base64
@@ -1369,7 +1369,7 @@ public static class InputStream extends java.io.FilterInputStream
/**
* Constructs a {@link Base64.InputStream} in DECODE mode.
*
- * @param in the java.io.InputStream from which to read data.
+ * @param in the {@link java.io.InputStream} from which to read data.
* @since 1.3
*/
public InputStream( java.io.InputStream in )
@@ -1392,7 +1392,7 @@ public InputStream( java.io.InputStream in )
* Example: new Base64.InputStream( in, Base64.DECODE )
*
*
- * @param in the java.io.InputStream from which to read data.
+ * @param in the {@link java.io.InputStream} from which to read data.
* @param options Specified options
* @see Base64#ENCODE
* @see Base64#DECODE
@@ -1582,7 +1582,7 @@ else if( i == 0 )
/**
* A {@link Base64.OutputStream} will write data to another
- * java.io.OutputStream, given in the constructor,
+ * {@link java.io.OutputStream}, given in the constructor,
* and encode/decode to/from Base64 notation on the fly.
*
* @see Base64
@@ -1605,7 +1605,7 @@ public static class OutputStream extends java.io.FilterOutputStream
/**
* Constructs a {@link Base64.OutputStream} in ENCODE mode.
*
- * @param out the java.io.OutputStream to which data will be written.
+ * @param out the {@link java.io.OutputStream} to which data will be written.
* @since 1.3
*/
public OutputStream( java.io.OutputStream out )
@@ -1627,7 +1627,7 @@ public OutputStream( java.io.OutputStream out )
*
* Example: new Base64.OutputStream( out, Base64.ENCODE )
*
- * @param out the java.io.OutputStream to which data will be written.
+ * @param out the {@link java.io.OutputStream} to which data will be written.
* @param options Specified options.
* @see Base64#ENCODE
* @see Base64#DECODE
diff --git a/http-client-parent/pom.xml b/http-client-parent/pom.xml
index 293f459..01a1b90 100644
--- a/http-client-parent/pom.xml
+++ b/http-client-parent/pom.xml
@@ -5,7 +5,7 @@
org.expath
expath-parent
- 1.4.0
+ 1.6.2
@@ -54,5 +54,5 @@