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

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

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

/*-
 * ========================LICENSE_START=================================
 * Interledger DCP Core
 * %%
 * Copyright (C) 2017 - 2019 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.DateUtils;
import org.interledger.core.Immutable;
import org.interledger.core.InterledgerCondition;

import com.google.common.primitives.UnsignedLong;
import org.immutables.value.Value.Default;

import java.time.Instant;

/**
 * A request to a Connector to get child account information.
 */
public interface IldcpRequest {

  InterledgerCondition EXECUTION_CONDITION = IldcpResponsePacket.EXECUTION_FULFILLMENT.getCondition();

  /**
   * Get the default builder.
   *
   * @return a {@link IldcpRequestBuilder} instance.
   */
  static IldcpRequestBuilder builder() {
    return new IldcpRequestBuilder();
  }

  /**
   * The destination of an ILP packet for IL-DCP is {@code 0} by default, but can be adjusted.
   *
   * @return An {@link UnsignedLong} value containing the amount in the {@link IldcpRequest}
   *         if an amount value exists, else default at {@code UnsignedLong.ZERO}.
   */
  default UnsignedLong getAmount() {
    return UnsignedLong.ZERO;
  }

  /**
   * The Date and time when the packet expires. Each connector changes the value of this field to set the expiry to an
   * earlier time, before forwarding the packet.
   *
   * @return The {@link Instant} this packet should be considered to be expired.
   */
  Instant getExpiresAt();

  /**
   * Exists to satisfy Immutables.
   */
  @Immutable
  abstract class AbstractIldcpRequest implements IldcpRequest {

    @Override
    @Default
    public UnsignedLong getAmount() {
      return UnsignedLong.ZERO;
    }

    @Override
    @Default
    public Instant getExpiresAt() {
      return DateUtils.now().plusSeconds(30);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy