in src/java/org/apache/fulcrum/jce/crypto/cli/CLI.java [47:72]
public static void main( String[] args )
{
try
{
if( args.length < 3 )
{
printHelp();
throw new IllegalArgumentException("Invalid command line");
}
String operationMode = args[0];
if( operationMode.equals("file") )
{
processFiles(args);
}
else if( operationMode.equals("string") )
{
processString(args);
}
}
catch (Exception e)
{
System.out.println("Error : " + e.getMessage());
}
}