atg.security
Class Base64Encoder

java.lang.Object
  extended by atg.security.Base64Encoder
All Implemented Interfaces:
BinaryToTextEncoder, java.io.Serializable

public class Base64Encoder
extends java.lang.Object
implements BinaryToTextEncoder

Encodes a binary array as text using base 64.

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
           
 
Constructor Summary
Base64Encoder()
           
 
Method Summary
 java.lang.String encode(byte[] pBytes)
          Returns a string representation of a series of bytes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Constructor Detail

Base64Encoder

public Base64Encoder()
Method Detail

encode

public java.lang.String encode(byte[] pBytes)
Returns a string representation of a series of bytes.

Specified by:
encode in interface BinaryToTextEncoder