package de.fzi.wikipipes;
import java.io.InputStream;
/**
* Semantic wiki pages which implement this interface give access to metadata.
* This is currently a read-only access.
*
* @author voelkel
*/
public interface ISemanticWikiPage extends IWikiPage {
/**
* @return an InputStream with RDF/XML in UTF-8 encoding, if availoable for
* this page or null.
*/
InputStream getRDFXML();
}
|