
org.springframework.data.ldap.domain.GenericPersistable Maven / Gradle / Ivy
package org.springframework.data.ldap.domain;
import javax.naming.Name;
import org.springframework.data.domain.Persistable;
public abstract class GenericPersistable extends AbstractSerializable implements Persistable {
private static final long serialVersionUID = -4820449399744813870L;
@Override
public boolean isNew() {
return getId() == null;
}
public abstract void setId(ID id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy