ingo@186: /* ingo@186: * Copyright (c) 2011 by Intevation GmbH ingo@186: * ingo@186: * This program is free software under the LGPL (>=v2.1) ingo@186: * Read the file LGPL.txt coming with the software for details ingo@186: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@186: */ teichmann@475: package org.dive4elements.artifacts; ingo@186: ingo@186: import java.io.Serializable; ingo@186: ingo@186: import org.w3c.dom.Document; ingo@186: ingo@186: ingo@186: public interface CollectionItem extends Serializable { ingo@186: ingo@186: String getArtifactIdentifier(); ingo@186: ingo@186: Document getAttribute(); ingo@186: } ingo@186: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :