Examples of importPrefixMappings()


Examples of org.apache.stanbol.commons.namespaceprefix.service.StanbolNamespacePrefixService.importPrefixMappings()

    @Test
    public void testInitialisationWithoutLocalMappingFIle() throws IOException {
        StanbolNamespacePrefixService service = new StanbolNamespacePrefixService(null);
        service.setPrefix("dummy", "http://www.dummy.org/dummy#");
        Assert.assertEquals("http://www.dummy.org/dummy#", service.getNamespace("dummy"));
        service.importPrefixMappings(new ByteArrayInputStream(
            "dummy2\thttp://www.dummy.org/dummy2#".getBytes(Charset.forName("UTF-8"))));
        Assert.assertEquals("http://www.dummy.org/dummy2#", service.getNamespace("dummy2"));
       
    }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.