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

com.tenduke.events.api.model.data.LicenseLeaseFields Maven / Gradle / Ivy

Go to download

Objects and interfaces describing data communicated in the 10Duke Event Data system API

There is a newer version: 1.9.0
Show newest version
package com.tenduke.events.api.model.data;

import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;

/**
 * Event data fields for license operations that contain lease data.
 * @author roope
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface LicenseLeaseFields extends LicenseFields {

    /**
     * Gets the lease id returned in token reflecting this consumption.
     * @return lease id.
     */
    String getLeaseId();

    /**
     * Gets the license anchors that a license can be tied to.
     * @return the license anchors.
     */
    List getLicenseAnchors();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy