Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/Id.java @ 33:251e8904d6c2
Make the Interfaces Serializable to make them usable in the Artifactdatabase.
Bug Fixed in SQL-Statement
artifacts/trunk@81 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 14 Sep 2009 13:36:35 +0000 |
parents | c2d53bd30ab8 |
children | 8447467cef86 |
line wrap: on
line source
package de.intevation.artifactdatabase; import java.util.List; /** * @author Sascha L. Teichmann */ public class Id { public interface Filter { List filterIds(List ids); } protected int id; public Id() { } public Id(int id) { this.id = id; } public int getId() { return id; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: