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

com.github.tomschi.commons.data.dbo.DatabaseObject Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
package com.github.tomschi.commons.data.dbo;

import com.github.tomschi.commons.data.DataObject;

import java.io.Serializable;

/**
 * The interface {@link DatabaseObject} is the base interface for
 * all database objects.
 *
 * @param  The type of the id.
 * @author Tomschi
 * @since 0.1.0
 */
public interface DatabaseObject extends DataObject {

    /**
     * The getter of the id.
     *
     * @return The id.
     */
    T getId();

    /**
     * The setter of the id.
     *
     * @param id The id to set.
     */
    void setId(T id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy