blob: 974aa17599009c44dafe4ae974712d0af3283a99 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.core.framework.prompt;
import java.net.UnknownHostException;
import java.rmi.RemoteException;
import org.eclipse.osee.connection.service.IServiceConnector;
import org.eclipse.osee.ote.core.TestScript;
/**
* @author Ken J. Aguilar
*/
public class UserInputPromptImpl extends AbstractInteractivePrompt<String> implements IUserInputPromptResponse {
/**
* @param id
* @param message
*/
public UserInputPromptImpl(IServiceConnector connector, TestScript script, String id, String message) throws UnknownHostException {
super(connector, script, id, message);
}
/* (non-Javadoc)
* @see org.eclipse.osee.ote.core.framework.prompt.BasicRemotePrompt#doPrompt(org.eclipse.osee.ote.core.IUserSession, org.eclipse.osee.ote.core.TestScript)
*/
@Override
public void doPrompt() throws Exception {
getScript().getUserSession().initiateUserInputPrompt(createRemoteReference(IUserInputPromptResponse.class));
}
/* (non-Javadoc)
* @see org.eclipse.osee.ote.core.framework.prompt.IUserInputPromptResponse#respond(java.lang.String)
*/
public void respond(String text) throws RemoteException {
endPrompt(text, null);
}
}