org.seedstack.maven.components.inquirer.Inquirer Maven / Gradle / Ivy
The newest version!
/*
* Copyright © 2013-2021, The SeedStack authors
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.seedstack.maven.components.inquirer;
import java.net.URL;
import java.util.Map;
public interface Inquirer {
Map inquire(URL inquiryURL) throws InquirerException;
Object ask(Question question) throws InquirerException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy