com.sapportals.portal.prt.service.soap.types
Class Base64

java.lang.Object
  |
  +--com.sapportals.portal.prt.service.soap.types.Base64

public class Base64
extends java.lang.Object


Constructor Summary
Base64()
           
Base64(byte[] value)
          Assumes that the value passed in is ASCII text.
 
Method Summary
static java.lang.String base64Decode(java.lang.String orig)
           
 byte[] decode()
           
 byte[] encode()
           
 byte[] getValue()
           
 byte[] getValueEncoded()
           
 void setValue(byte[] val)
           
 void setValueEncoded(byte[] val)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Base64

public Base64(byte[] value)
Assumes that the value passed in is ASCII text.

Base64

public Base64()
Method Detail

getValue

public byte[] getValue()

getValueEncoded

public byte[] getValueEncoded()

setValueEncoded

public void setValueEncoded(byte[] val)

setValue

public void setValue(byte[] val)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

encode

public byte[] encode()

decode

public byte[] decode()

base64Decode

public static java.lang.String base64Decode(java.lang.String orig)