Package com.sun.identity.cli
Interface IOutput
-
- All Known Implementing Classes:
BufferOutputWriter,OutputWriter,StringOutputWriter
public interface IOutputInterface defines methods for writing messages from CLI engine.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprintError(String str)Prints error.voidprintlnError(String str)Prints error with new line.voidprintlnMessage(String str)Prints message with new line.voidprintMessage(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.
-
-