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

org.hyperledger.fabric.contract.routing.PropertyDefinition Maven / Gradle / Ivy

There is a newer version: 2.5.3
Show newest version
/*
 * 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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy