/* 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 METS Fedora Extension 1.1 format. * * @author Chris Wilper */ public class METSFedoraExt1_1DOSerializer extends METSFedoraExtDOSerializer { /** * Constructs an instance. */ public METSFedoraExt1_1DOSerializer() { this(null); } public METSFedoraExt1_1DOSerializer(DOTranslationUtility translator) { super(METS_EXT1_1, translator); } }