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

org.codegas.commons.lang.value.Id Maven / Gradle / Ivy

The newest version!
package org.codegas.commons.lang.value;

import java.io.Serializable;

import javax.persistence.Embeddable;

public interface Id extends Serializable {

    Object idHash();

    default Object toJpaQueryObject() {
        return getClass().isAnnotationPresent(Embeddable.class) ? this : toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy