001/**
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 *
006 */
007package org.fcrepo.migration;
008
009import java.util.List;
010
011/**
012 * An interface defining access to the object-level properties for
013 * a fedora 3 object.
014 * @author mdurbin
015 */
016public interface ObjectProperties {
017
018    /**
019     * @return the properties for the object.
020     */
021    public List<? extends ObjectProperty> listProperties();
022
023}