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

org.hyperledger.fabric.client.Builder Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
 * 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