/* 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 fedora.server.security; import java.io.IOException; import org.xml.sax.SAXException; import fedora.server.utilities.StreamUtility; public class MockPolicyParser extends PolicyParser { public MockPolicyParser() throws IOException, SAXException { super(StreamUtility.getStream(TestPolicyParser.SCHEMA_GOODENOUGH)); } }