All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hyperledger.composer.client.ComposerDriver Maven / Gradle / Ivy

/*
 * Copyright IBM Corp. 2017 All Rights Reserved.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package org.hyperledger.composer.client;

import org.hyperledger.composer.ComposerException;

public interface ComposerDriver {

	boolean acceptsConnectionString(String connStr);

	C getConnector(String connString, Wallet userWallet) throws ComposerException;
}