org.hyperledger.fabric.contract.routing.impl.PropertyDefinitionImpl 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 IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.fabric.contract.routing.impl;
import java.lang.reflect.Field;
import org.hyperledger.fabric.contract.metadata.TypeSchema;
import org.hyperledger.fabric.contract.routing.PropertyDefinition;
public class PropertyDefinitionImpl implements PropertyDefinition {
private Class> typeClass;
private TypeSchema schema;
private Field field;
private String name;
public PropertyDefinitionImpl(String name, Class> typeClass, TypeSchema schema, Field f) {
this.typeClass = typeClass;
this.schema = schema;
this.field = f;
this.name =name;
}
@Override
public Class> getTypeClass() {
return this.typeClass;
}
@Override
public TypeSchema getSchema() {
return this.schema;
}
@Override
public Field getField() {
return this.field;
}
@Override
public String getName() {
return this.name;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy