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
009/**
010 * An interface defining access to a specific object level property
011 * for a fedora 3 object.
012 * @author mdurbin
013 */
014public interface ObjectProperty {
015
016    /**
017     * @return the property name.
018     */
019    public String getName();
020
021    /**
022     * @return the property value.
023     */
024    public String getValue();
025}