public class JspWrapper extends Object implements IHTTPOutput
Modifier and Type | Field and Description |
---|---|
static String |
_rcsid |
protected AdminProfile |
adminProfile |
protected javax.servlet.jsp.JspWriter |
writer |
Constructor and Description |
---|
JspWrapper(javax.servlet.jsp.JspWriter writer,
AdminProfile adminProfile)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
flush()
Flush the stream
|
String |
mapKeyToPassword(String key)
Convert a key, created by mapPasswordToKey, back to the original password, within
the lifetime of the browser session.
|
String |
mapPasswordToKey(String password)
Map a password to a unique key.
|
void |
newLine()
Write a newline
|
void |
print(boolean b)
Write a boolean
|
void |
print(char c)
Write a char
|
void |
print(char[] c)
Write an array of chars
|
void |
print(double d)
Write a double
|
void |
print(float f)
Write a float
|
void |
print(int i)
Write an int
|
void |
print(long l)
Write a long
|
void |
print(Object o)
Write an object
|
void |
print(String s)
Write a string
|
void |
println(boolean b)
Write a boolean
|
void |
println(char c)
Write a char
|
void |
println(char[] c)
Write an array of chars
|
void |
println(double d)
Write a double
|
void |
println(float f)
Write a float
|
void |
println(int i)
Write an int
|
void |
println(long l)
Write a long
|
void |
println(Object o)
Write an object
|
void |
println(String s)
Write a string
|
public static final String _rcsid
protected final javax.servlet.jsp.JspWriter writer
protected final AdminProfile adminProfile
public JspWrapper(javax.servlet.jsp.JspWriter writer, AdminProfile adminProfile)
public void flush() throws IOException
flush
in interface IHTTPOutputActivity
IOException
public void newLine() throws IOException
newLine
in interface IHTTPOutputActivity
IOException
public void print(boolean b) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(char c) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(char[] c) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(double d) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(float f) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(int i) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(long l) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(Object o) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void print(String s) throws IOException
print
in interface IHTTPOutputActivity
IOException
public void println(boolean b) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(char c) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(char[] c) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(double d) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(float f) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(int i) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(long l) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(Object o) throws IOException
println
in interface IHTTPOutputActivity
IOException
public void println(String s) throws IOException
println
in interface IHTTPOutputActivity
IOException
public String mapPasswordToKey(String password)
mapPasswordToKey
in interface IPasswordMapperActivity
password
- is the password.public String mapKeyToPassword(String key)
mapKeyToPassword
in interface IPasswordMapperActivity
key
- is the key.