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

org.interledger.ildcp.IldcpResponse Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.interledger.ildcp;

/*-
 * ========================LICENSE_START=================================
 * Interledger Dynamic Configuration Protocol Core Libs
 * %%
 * Copyright (C) 2017 - 2018 Hyperledger and its contributors
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * =========================LICENSE_END==================================
 */

import org.interledger.core.Immutable;
import org.interledger.core.InterledgerAddress;
import org.interledger.core.InterledgerFulfillment;

/**
 * A response to an IL-DCP request.
 */
public interface IldcpResponse {

  InterledgerFulfillment EXECUTION_FULFILLMENT = InterledgerFulfillment.of(new byte[32]);

  static IldcpResponseBuilder builder() {
    return new IldcpResponseBuilder();
  }

  /**
   * The Interledger address of the requesting client node as assigned by the configuration provider.
   *
   * @return An {@link InterledgerAddress}.
   */
  InterledgerAddress getClientAddress();

  /**
   * An asset code of the asset that two nodes participating in IL-DCP will use to settle.
   *
   * @return A {@link String}.
   */
  String getAssetCode();

  /**
   * 

An asset scale for amounts that will be used in ILP packets exchanged between two nodes * participating in IL-DCP.

* *

This value is the order of magnitude used to express one full currency unit in this * account's base units. More formally, an integer (..., -2, -1, 0, 1, 2, ...), such that one of the account's base * units equals 10^-{@code currencyScale} {@code currencyCode}

* *

For example, if the integer values represented on the system are to be interpreted * as dollar-cents (for the purpose of settling a user's account balance, for instance), then the account's * currencyScale is 2. The amount 10000 would be translated visually into a decimal format via the following equation: * 10000 * (10^(-2)), or "100.00".

* * @return An {@link Integer} representing the asset scale. */ short getAssetScale(); @Immutable abstract class AbstractIldcpResponse implements IldcpResponse { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy