}
public UserInteractionStrategy getUserInteractionStrategy() {
String message = properties.getString(CONFIRMATION_MESSAGE.getKey());
if (message == null) {
return new NoUserInputStrategy();
} else {
return new GUIInteractionStrategy(this, message);
}
}