/* * Copyright 2010 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.optaconf.domain; import java.io.Serializable; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.MappedSuperclass; import javax.persistence.Version; @MappedSuperclass public abstract class AbstractPersistable implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) protected Long id; @Version protected Long version; public AbstractPersistable() {} public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getVersion() { return version; } protected void setVersion(Long version) { this.version = version; } // ************************************************************************ // Real methods // ************************************************************************ @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null) { return false; } if (getClass() != o.getClass()) { return false; } AbstractPersistable other = (AbstractPersistable) o; if (getId() == null) { if (other.getId() != null) { return false; } } else if (!getId().equals(other.getId())) { return false; } return true; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); return result; } public String toString() { return "[" + getClass().getSimpleName() + "-" + id + "]"; } }