Class CdrPipeline
- java.lang.Object
-
- com.opencloud.slee.resources.cdr.process.CdrPipeline
-
public class CdrPipeline extends Object
Command line tool that allows custom processing of binary CDR files. Invoke with no parameters to print help and usage information.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCHAIN_OPTIONstatic StringFILES_OPTIONstatic StringIGNORE_ERROR_OPTIONstatic intMIN_SIZE_LIMITstatic StringPROCESSOR_PROPERTY_OPTIONstatic StringSIZE_LIMIT_OPTION
-
Constructor Summary
Constructors Constructor Description CdrPipeline()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidmain(String[] args)Program entry point.static intmainReturnStatusCode(String[] args)This method is equivalent tomain(String[]).
-
-
-
Field Detail
-
FILES_OPTION
public static final String FILES_OPTION
- See Also:
- Constant Field Values
-
CHAIN_OPTION
public static final String CHAIN_OPTION
- See Also:
- Constant Field Values
-
IGNORE_ERROR_OPTION
public static final String IGNORE_ERROR_OPTION
- See Also:
- Constant Field Values
-
SIZE_LIMIT_OPTION
public static final String SIZE_LIMIT_OPTION
- See Also:
- Constant Field Values
-
PROCESSOR_PROPERTY_OPTION
public static final String PROCESSOR_PROPERTY_OPTION
- See Also:
- Constant Field Values
-
MIN_SIZE_LIMIT
public static final int MIN_SIZE_LIMIT
- See Also:
- Constant Field Values
-
-
Method Detail
-
main
public static void main(String[] args)
Program entry point.- Parameters:
args- command line arguments.
-
mainReturnStatusCode
public static int mainReturnStatusCode(String[] args)
This method is equivalent tomain(String[]). The difference is that this method does not callSystem.exit(int)to set status code, the status code is returned from the method. The nonzero status code indicates error during processing.- Parameters:
args- command line arguments.- Returns:
- 0 if success, nonzero value (1) otherwise.
-
-