org.hyperledger.fabric.contract.routing.PropertyDefinition 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 2019 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.contract.routing;
import java.lang.reflect.Field;
import org.hyperledger.fabric.contract.metadata.TypeSchema;
public interface PropertyDefinition {
/**
* @return Class of the Property
*/
Class> getTypeClass();
/**
* @return TypeSchema
*/
TypeSchema getSchema();
/**
* @return Field
*/
Field getField();
/**
* @return Name of the property
*/
String getName();
}