/**
* Shut the repository down.
*/
private static void shutdownImR(String[] args)
{
Admin _admin = getAdmin();
boolean _wait = true;
if (args.length == 2)
{
if (args[1].toLowerCase().equals("force"))
{
_wait = false;
}
else
{
System.out.println("Unrecognized option: " + args[1]);
System.out.println("The only possible option is \"force\"");
shortUsage();
}
}
try
{
_admin.shutdown(_wait);
System.out.println("The Implementation Repository has been shut down without exceptions");
}
catch (Exception _e)
{