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 String
CHAIN_OPTION
static String
FILES_OPTION
static String
IGNORE_ERROR_OPTION
static int
MIN_SIZE_LIMIT
static String
PROCESSOR_PROPERTY_OPTION
static String
SIZE_LIMIT_OPTION
-
Constructor Summary
Constructors Constructor Description CdrPipeline()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
main(String[] args)
Program entry point.static int
mainReturnStatusCode(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.
-
-