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 */
006package org.fcrepo.kernel.api.operations;
007
008import org.fcrepo.kernel.api.RdfStream;
009
010/**
011 * Operation for interacting with an rdf source
012 *
013 * @author bbpennel
014 */
015public interface RdfSourceOperation extends RelaxableResourceOperation {
016
017    /**
018     * Get the incoming user space triples for the resource
019     *
020     * @return triples
021     */
022    RdfStream getTriples();
023
024}