/* 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; /** * Deserializes objects in FOXML 1.1 format. * * @author Chris Wilper */ public class FOXML1_1DODeserializer extends FOXMLDODeserializer { /** * Constructs an instance. */ public FOXML1_1DODeserializer() { this(null); } public FOXML1_1DODeserializer(DOTranslationUtility translator) { super(FOXML1_1,translator); } }