/* The contents of this file are subject to the license and copyright terms * detailed in the license directory at the root of the source tree (also * available online at http://fedora-commons.org/license/). */ package org.fcrepo.server.storage.translation; /** * Serializes objects in FOXML 1.0 format. * * @author Chris Wilper */ public class FOXML1_0DOSerializer extends FOXMLDOSerializer { /** * Constructs an instance. */ public FOXML1_0DOSerializer() { this(null); } public FOXML1_0DOSerializer(DOTranslationUtility translator) { super(FOXML1_0, translator); } }