Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/DefaultCollectionItem.java @ 363:4d3298295a64
Enhanced the State interface with a new method initialize() which might be used to initialize the State based on a model Artifact.
artifacts/trunk@3623 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 09 Jan 2012 08:15:35 +0000 |
parents | 6ef6acf30d66 |
children |
line wrap: on
line source
/* * Copyright (c) 2011 by Intevation GmbH * * This program is free software under the LGPL (>=v2.1) * Read the file LGPL.txt coming with the software for details * or visit http://www.gnu.org/licenses/ if it does not exist. */ package de.intevation.artifactdatabase; import de.intevation.artifacts.CollectionItem; import de.intevation.artifacts.common.utils.XMLUtils; import org.w3c.dom.Document; public class DefaultCollectionItem implements CollectionItem { protected String artifactIdentifier; protected byte [] data; protected Document document; public DefaultCollectionItem() { } public DefaultCollectionItem(String artifactIdentifier, byte [] attribute) { this.artifactIdentifier = artifactIdentifier; this.data = attribute; } public String getArtifactIdentifier() { return artifactIdentifier; } public synchronized Document getAttribute() { if (document == null) { if (data != null) { document = XMLUtils.fromByteArray(data, true); } } return document; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :