java.lang.Object
com.sun.xml.messaging.saaj.util.Base64

@Deprecated(forRemoval=true) public final class Base64 extends Object
Deprecated, for removal: This API element is subject to removal in a future version.
Use Base64 instead
This class provides encode/decode for RFC 2045 Base64 as defined by RFC 2045, N. Freed and N. Borenstein. RFC 2045: Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies. Reference 1996 Available at: http://www.ietf.org/rfc/rfc2045.txt This class is used by XML Schema binary format validation
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    byte[]
    decode(byte[] base64Data)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Decodes Base64 data into octects
    static byte[]
    encode(byte[] binaryData)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Encodes hex octects into Base64

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • encode

      public static byte[] encode(byte[] binaryData)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Encodes hex octects into Base64
      Parameters:
      binaryData - Array containing binaryData
      Returns:
      Encoded Base64 array
    • decode

      public byte[] decode(byte[] base64Data)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Decodes Base64 data into octects
      Parameters:
      base64Data - Byte array containing Base64 data
      Returns:
      Array containind decoded data.
    • base64Decode

      public static String base64Decode(String orig)
      Deprecated, for removal: This API element is subject to removal in a future version.