Package org.forgerock.audit.handlers.csv
Class CsvAuditEventHandlerConfiguration.CsvFormatting
- java.lang.Object
-
- org.forgerock.audit.handlers.csv.CsvAuditEventHandlerConfiguration.CsvFormatting
-
- Enclosing class:
- CsvAuditEventHandlerConfiguration
public static class CsvAuditEventHandlerConfiguration.CsvFormatting extends Object
Contains the csv writer configuration parameters.
-
-
Constructor Summary
Constructors Constructor Description CsvFormatting()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description char
getDelimiterChar()
Gets the character to use to delimit the csv entries.String
getEndOfLineSymbols()
Gets the end of line symbol.char
getQuoteChar()
Gets the character to use to quote the csv entries.void
setDelimiterChar(char delimiterChar)
Sets the character to use to delimit the csv entries.void
setEndOfLineSymbols(String endOfLineSymbols)
Gets the end of line symbol.void
setQuoteChar(char quoteChar)
Sets the character to use to quote the csv entries.
-
-
-
Method Detail
-
getQuoteChar
public char getQuoteChar()
Gets the character to use to quote the csv entries.- Returns:
- The quote character.
-
setQuoteChar
public void setQuoteChar(char quoteChar)
Sets the character to use to quote the csv entries.- Parameters:
quoteChar
- The quote character.
-
getDelimiterChar
public char getDelimiterChar()
Gets the character to use to delimit the csv entries.- Returns:
- The character used to delimit the entries.
-
setDelimiterChar
public void setDelimiterChar(char delimiterChar)
Sets the character to use to delimit the csv entries.- Parameters:
delimiterChar
- The character used to delimit the entries.
-
getEndOfLineSymbols
public String getEndOfLineSymbols()
Gets the end of line symbol.- Returns:
- The end of line symbol.
-
setEndOfLineSymbols
public void setEndOfLineSymbols(String endOfLineSymbols)
Gets the end of line symbol.- Parameters:
endOfLineSymbols
- The end of line symbol.
-
-