Package com.sun.identity.cli
Interface IOutput
-
- All Known Implementing Classes:
BufferOutputWriter
,OutputWriter
,StringOutputWriter
public interface IOutput
Interface defines methods for writing messages from CLI engine.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
printError(String str)
Prints error.void
printlnError(String str)
Prints error with new line.void
printlnMessage(String str)
Prints message with new line.void
printMessage(String str)
Prints message.
-
-
-
Method Detail
-
printMessage
void printMessage(String str)
Prints message.- Parameters:
str
- Message string.
-
printlnMessage
void printlnMessage(String str)
Prints message with new line.- Parameters:
str
- Message string.
-
printError
void printError(String str)
Prints error.- Parameters:
str
- Error message string.
-
printlnError
void printlnError(String str)
Prints error with new line.- Parameters:
str
- Error message string.
-
-