UntrustedInputpublic 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.
this.input = input;
|
Methods Summary |
---|
public java.lang.Object | getInput()Returns the untrusted input as Object.
return input;
| public java.lang.String | getString()Returns the untrusted input convertet to a String.
return input.toString();
| public java.lang.String | toString()
return input.toString();
|
|