org.hyperledger.fabric.ledger.Collection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-chaincode-shim Show documentation
Show all versions of fabric-chaincode-shim Show documentation
Hyperledger Fabric Java Chaincode Shim
/*
* Copyright 2020 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.ledger;
/** Place holder. */
public interface Collection {
/**
* Constant that can be used to refer to the 'Worldstate' collection explicitly.
*/
String WORLD = "worldstate";
/**
* Placeholder. Purely in place to prevent Checkstyle inferring this class is pointless.
* will be removed in the next story
*/
void placeholder();
}