2 * Copyright 2005 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.persistence;
19 import java.io.Serializable;
22 * Interface for persistent objects. This defines required functionality for all objects
25 * Objects that implement this interface and which implement
26 * {@link java.lang.Object#equals(java.lang.Object)}
27 * should exclude the primary key and version from determining equality.
29 public interface Persistent {
32 * Gets the primary key.
33 * @return Primary key.
34 * @see #setPrimaryKey(Serializable)
36 Serializable getPrimaryKey();
39 * Sets the primary key.
40 * @param aKey Primary key.
41 * @see #getPrimaryKey()
43 void setPrimaryKey(Serializable aKey);
48 * @see #setPersistedVersion(int)
50 int getPersistedVersion();
54 * @param aVersion Version.
55 * @see #getPersistedVersion()
57 void setPersistedVersion(int aVersion);