Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/Id.java @ 84:72e2dd4feb31
Added the time to live of an artifact to the CallContext.
artifacts/trunk@828 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 25 Mar 2010 17:32:54 +0000 |
parents | 8447467cef86 |
children | d348fe1fd822 |
line wrap: on
line source
package de.intevation.artifactdatabase; import java.util.List; /** * @author <a href="mailto:sascha.teichmann@intevation.de">Sascha L. Teichmann</a> */ 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: