FileDocCategorySizeDatePackage
UntrustedInput.javaAPI DocAndroid 1.5 API799Wed May 06 22:41:06 BST 2009org.bouncycastle.i18n.filter

UntrustedInput

public class UntrustedInput extends Object
Wrapper class to mark untrusted input.

Fields Summary
protected Object
input
Constructors Summary
public UntrustedInput(Object input)
Construct a new UntrustedInput instance.

param
input the untrusted input Object

        this.input = input;
    
Methods Summary
public java.lang.ObjectgetInput()
Returns the untrusted input as Object.

return
the input as Object

        return input;
    
public java.lang.StringgetString()
Returns the untrusted input convertet to a String.

return
the input as String

        return input.toString();
    
public java.lang.StringtoString()

        return input.toString();