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

cc.catalysts.boot.dto.Identifiable Maven / Gradle / Ivy

There is a newer version: 1.1.7
Show newest version
package cc.catalysts.boot.dto;

import java.io.Serializable;

/**
 * Common interface for an identifiable object
 *
 * @param  the type of the identifier, e.g. {@link Long}
 * @author Klaus Lehner ([email protected])
 */
public interface Identifiable {
    /**
     * @return the unique ID of this object
     */
    ID getId();

    /**
     * @param id the unique ID of this object
     */
    void setId(ID id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy