org.hyperledger.fabric.client.Builder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-gateway Show documentation
Show all versions of fabric-gateway Show documentation
Hyperledger Fabric Gateway client API for Java
/*
* Copyright 2022 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.client;
/**
* A builder used to create new object instances from configuration state.
* @param The type of object built.
*/
public interface Builder {
/**
* Build an instance.
* @return A built instance.
*/
T build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy