/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2008-2010 Sun Microsystems, Inc.
* Portions Copyright 2012-2015 ForgeRock AS.
*/
/**
* Supports user interactions for a command line driven application.
*/
implements UserInteraction {
private final boolean isInteractive;
private final boolean isForceOnError;
/**
* Creates an instance that will use standard streams for interaction and with
* the provided CLI arguments.
* @param ud The CLI arguments.
*/
}
/** {@inheritDoc} */
}
/** {@inheritDoc} */
public Object confirm(LocalizableMessage summary, LocalizableMessage details, LocalizableMessage fineDetails,
int defInt = -1;
{
{
defInt = i+1;
}
}
if (fineDetails != null) {
if (detailsPrompt == null)
{
}
}
boolean menuDisplayed = false;
while (returnValue == null) {
int respInt;
try
{
if (menuDisplayed)
{
println();
}
menuDisplayed = true;
if (m.isSuccess())
{
}
else
{
// Should never happen.
throw new RuntimeException();
}
}
catch (ClientException ce)
{
}
println();
} else {
}
}
return returnValue;
}
/** {@inheritDoc} */
}
}
}
}
/** {@inheritDoc} */
public boolean isAdvancedMode() {
return false;
}
/** {@inheritDoc} */
public boolean isInteractive() {
return isInteractive;
}
/** {@inheritDoc} */
public boolean isMenuDrivenMode() {
return true;
}
/** {@inheritDoc} */
public boolean isQuiet() {
return false;
}
/** {@inheritDoc} */
public boolean isScriptFriendly() {
return false;
}
/** {@inheritDoc} */
public boolean isVerbose() {
return true;
}
/** {@inheritDoc} */
public boolean isCLI()
{
return true;
}
/** {@inheritDoc} */
public boolean isForceOnError() {
return isForceOnError;
}
}