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

org.hyperledger.fabric.contract.execution.InvocationRequest Maven / Gradle / Ivy

/*
 * Copyright 2019 IBM DTCC All Rights Reserved.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package org.hyperledger.fabric.contract.execution;

import java.util.List;

/**
 * Invocation Request.
 *
 * All information needed to find
 * {@link org.hyperledger.fabric.contract.annotation.Contract} and invoke the
 * request.
 */
public interface InvocationRequest {
    /**
     *
     */
    String DEFAULT_NAMESPACE = "default";

    /**
     * @return Namespace
     */
    String getNamespace();

    /**
     * @return Method
     */
    String getMethod();

    /**
     * @return Args as byte array
     */
    List getArgs();

    /**
     * @return Request
     */
    String getRequestName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy