org.hyperledger.fabric.ledger.impl.CollectionImpl 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.impl;
import org.hyperledger.fabric.ledger.Collection;
/**
* Placeholder.
*/
public class CollectionImpl implements Collection {
private final String name;
/**
*
*
* @param name
* @param ledgerImpl
*/
public CollectionImpl(final String name, final LedgerImpl ledgerImpl) {
this.name = name;
}
@Override
public void placeholder() {
// TODO Auto-generated method stub
}
}