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

org.odpi.openmetadata.accessservices.assetlineage.model.LineagePublishSummary Maven / Gradle / Ivy

There is a newer version: 5.0
Show newest version
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.assetlineage.model;


import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

import java.util.List;

@Getter
@Setter
@EqualsAndHashCode
@ToString
/**
 *
 * LineagePublishSummary describes details about lineage processing and publish activity completed by Asset Lineage OMAS.
 *
 */
public class LineagePublishSummary {
    /**
     * The list GUIDs for the items published after lineage processing activity completed.
     * -- GETTER --
     * Get items published.
     * @return the collection of GUIDs representing items published.
     * -- SETTER --
     * Set items published.
     * @param items collection of GUIDs for the items published.
     */
    private List items;
    /**
     * The point in time (cutoff time) when the entities used for lineage processing were retrieved from the cohort.
     * -- GETTER --
     * Gets the timestamp.
     * @return Long representing epoch time milliseconds.
     * -- SETTER --
     * Sets the timestamp.
     * @param  lineageTimestamp representing epoch time milliseconds.
     */
    private Long lineageTimestamp;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy