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

de.alpharogroup.domain.DomainObject Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
package de.alpharogroup.domain;

import java.io.Serializable;

/**
 * Marker interface for domain objects.
 *
 * @param  the primary key type of the corresponding entity
 */
public interface DomainObject extends Serializable {

	/**
	 * Gets the id.
	 *
	 * @return the id
	 */
	K getId();

	/**
	 * Sets the id.
	 *
	 * @param id
	 *            the new id
	 */
	void setId(K id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy