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

com.tenduke.events.api.model.data.ObjectFields 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;

/**
 * Event data fields for identifying an object related to the event.
 * @author jarkko
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface ObjectFields {

    /**
     * Gets the object id.
     * @return The object id.
     */
    String getObjectId();

    /**
     * Gets the object name. If objects are persisted, this should be name of the table.
     * @return The object name, e.g. table name.
     */
    String getObjectName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy