本文整理了Java中org.mule.runtime.core.api.util.xmlsecurity.XMLSecureFactories.createDefault()
方法的一些代码示例,展示了XMLSecureFactories.createDefault()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLSecureFactories.createDefault()
方法的具体详情如下:
包路径:org.mule.runtime.core.api.util.xmlsecurity.XMLSecureFactories
类名称:XMLSecureFactories
方法名:createDefault
暂无
代码示例来源:origin: mulesoft/mule
@Override
public Supplier<SAXParserFactory> getSaxParserFactory() {
return () -> XMLSecureFactories.createDefault().getSAXParserFactory();
}
代码示例来源:origin: mulesoft/mule
@Override
public Supplier<SAXParserFactory> getSaxParserFactory() {
return () -> XMLSecureFactories.createDefault().getSAXParserFactory();
}
代码示例来源:origin: mulesoft/mule
.loadDocument(() -> XMLSecureFactories.createDefault().getSAXParserFactory(),
new ModuleDelegatingEntityResolver(extensions), resource.getFile(),
new ByteArrayInputStream(resultStream.toByteArray()));
代码示例来源:origin: mulesoft/mule
private String serializeArtifact(ArtifactDeclaration artifact) {
checkArgument(artifact != null, "The artifact to serialize cannot be null");
try {
Document doc = createAppDocument(artifact);
XmlDslElementModelConverter toXmlConverter = XmlDslElementModelConverter.getDefault(doc);
DslElementModelFactory modelResolver = DslElementModelFactory.getDefault(context);
artifact.getGlobalElements()
.forEach(declaration -> appendChildElement(toXmlConverter, doc.getDocumentElement(),
modelResolver, (ElementDeclaration) declaration));
List<String> cDataElements = getCDataElements(doc.getDocumentElement());
// write the content into xml file
TransformerFactory transformerFactory = XMLSecureFactories.createDefault().getTransformerFactory();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(OutputKeys.CDATA_SECTION_ELEMENTS, join(cDataElements, " "));
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
DOMSource source = new DOMSource(doc);
StringWriter writer = new StringWriter();
transformer.transform(source, new StreamResult(writer));
return writer.getBuffer().toString();
} catch (Exception e) {
throw new MuleRuntimeException(createStaticMessage("Failed to serialize the declaration for the artifact ["
+ artifact.getName() + "]: " + e.getMessage()), e);
}
}
代码示例来源:origin: mulesoft/mule
private Document getModuleDocument(ExtensionLoadingContext context, URL resource) {
XmlConfigurationDocumentLoader xmlConfigurationDocumentLoader =
validateXml ? schemaValidatingDocumentLoader() : schemaValidatingDocumentLoader(NoOpXmlErrorHandler::new);
try {
final Set<ExtensionModel> extensions = new HashSet<>(context.getDslResolvingContext().getExtensions());
createTnsExtensionModel(resource, extensions).ifPresent(extensions::add);
return xmlConfigurationDocumentLoader.loadDocument(() -> XMLSecureFactories.createDefault().getSAXParserFactory(),
new ModuleDelegatingEntityResolver(extensions), resource.getFile(),
resource.openStream());
} catch (IOException e) {
throw new MuleRuntimeException(
createStaticMessage(format("There was an issue reading the stream for the resource %s",
resource.getFile())));
}
}
代码示例来源:origin: mulesoft/mule
@Test
public void transformer() {
TransformerFactory factory = XMLSecureFactories.createDefault().getTransformerFactory();
assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl"));
}
代码示例来源:origin: mulesoft/mule
@Test
public void documentBuilder() {
DocumentBuilderFactory factory = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl"));
}
代码示例来源:origin: mulesoft/mule
@Test
public void saxParser() {
SAXParserFactory factory = XMLSecureFactories.createDefault().getSAXParserFactory();
assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl"));
}
代码示例来源:origin: mulesoft/mule
@Test
public void xmlInput() {
XMLInputFactory factory = XMLSecureFactories.createDefault().getXMLInputFactory();
assertThat(factory.getClass().getName(), equalTo("com.sun.xml.internal.stream.XMLInputFactoryImpl"));
}
代码示例来源:origin: mulesoft/mule
@Test
public void schema() {
SchemaFactory factory = XMLSecureFactories.createDefault().getSchemaFactory("http://www.w3.org/2001/XMLSchema");
assertThat(factory.getClass().getName(), equalTo("com.sun.org.apache.xerces.internal.jaxp.validation.XMLSchemaFactory"));
}
}
代码示例来源:origin: mulesoft/mule
private ConfigLine loadArtifactConfig(String name, InputStream resource) {
checkArgument(resource != null, "The given application was not found as resource");
Document document =
noValidationDocumentLoader().loadDocument(() -> XMLSecureFactories.createDefault().getSAXParserFactory(),
new ModuleDelegatingEntityResolver(context.getExtensions()), name, resource);
XmlApplicationServiceRegistry xmlApplicationServiceRegistry =
new XmlApplicationServiceRegistry(new SpiServiceRegistry(), context);
return new XmlApplicationParser(createFromPluginClassloaders(cl -> xmlApplicationServiceRegistry.lookupProviders(
XmlNamespaceInfoProvider.class,
cl)
.stream().collect(Collectors.toList()), resolveContextArtifactPluginClassLoaders())).parse(document.getDocumentElement())
.orElseThrow(
() -> new MuleRuntimeException(createStaticMessage("Could not load load a Configuration from the given resource")));
}
代码示例来源:origin: mulesoft/mule
@Test
public void cachesXmlFactory() {
DocumentBuilderFactory documentBuilderFactoryOne = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
DocumentBuilderFactory documentBuilderFactoryTwo = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
assertThat(documentBuilderFactoryOne, sameInstance(documentBuilderFactoryTwo));
}
代码示例来源:origin: mulesoft/mule
@Test
public void createsTheCorrectInstances() {
XMLSecureFactories xmlSecureFactories = XMLSecureFactories.createDefault();
// As there are casts inside, creation would fail if the appropriate type is not returned
assertThat(xmlSecureFactories.getDocumentBuilderFactory(), notNullValue());
assertThat(xmlSecureFactories.getSAXParserFactory(), notNullValue());
assertThat(xmlSecureFactories.getXMLInputFactory(), notNullValue());
assertThat(xmlSecureFactories.getTransformerFactory(), notNullValue());
}
代码示例来源:origin: org.mule.services/mule-service-soap
public static Element stringToDomElement(String xml) throws XmlTransformationException {
try {
DocumentBuilder db = XMLSecureFactories.createDefault().getDocumentBuilderFactory().newDocumentBuilder();
InputSource is = new InputSource();
is.setCharacterStream(new StringReader(xml));
return db.parse(is).getDocumentElement();
} catch (Exception e) {
throw new XmlTransformationException("Could not transform xml string to Dom Element", e);
}
}
代码示例来源:origin: org.mule.runtime/mule-module-spring-config
protected XMLReader createSaxAnnotator(Document doc) throws ParserConfigurationException, SAXException {
SAXParserFactory saxParserFactory = XMLSecureFactories.createDefault().getSAXParserFactory();
SAXParser saxParser = saxParserFactory.newSAXParser();
XMLReader documentReader = saxParser.getXMLReader();
documentReader.setContentHandler(new XmlMetadataAnnotator(doc, metadataFactory));
return documentReader;
}
代码示例来源:origin: org.mule.services/mule-service-soap
public static Document stringToDocument(String xml) throws XmlTransformationException {
DocumentBuilderFactory factory = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
try {
factory.setNamespaceAware(true);
DocumentBuilder builder = factory.newDocumentBuilder();
return builder.parse(new ByteArrayInputStream(xml.getBytes()));
} catch (Exception e) {
throw new XmlTransformationException("Could not transform xml to Dom Document", e);
}
}
代码示例来源:origin: org.mule.services/mule-service-soap
public static XMLStreamReader stringToXmlStreamReader(String xml) throws XmlTransformationException {
try {
return XMLSecureFactories.createDefault().getXMLInputFactory()
.createXMLStreamReader(new ByteArrayInputStream(xml.getBytes()));
} catch (Exception e) {
throw new XmlTransformationException("Could not transform xml to XmlStreamReader", e);
}
}
}
代码示例来源:origin: org.mule.runtime/mule-module-spring-config
private String serializeArtifact(ArtifactDeclaration artifact) {
checkArgument(artifact != null, "The artifact to serialize cannot be null");
try {
Document doc = createAppDocument(artifact);
XmlDslElementModelConverter toXmlConverter = XmlDslElementModelConverter.getDefault(doc);
DslElementModelFactory modelResolver = DslElementModelFactory.getDefault(context);
artifact.getGlobalElements()
.forEach(declaration -> appendChildElement(toXmlConverter, doc.getDocumentElement(),
modelResolver, (ElementDeclaration) declaration));
List<String> cDataElements = getCDataElements(doc.getDocumentElement());
// write the content into xml file
TransformerFactory transformerFactory = XMLSecureFactories.createDefault().getTransformerFactory();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(OutputKeys.CDATA_SECTION_ELEMENTS, join(cDataElements, " "));
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
DOMSource source = new DOMSource(doc);
StringWriter writer = new StringWriter();
transformer.transform(source, new StreamResult(writer));
return writer.getBuffer().toString();
} catch (Exception e) {
throw new MuleRuntimeException(createStaticMessage("Failed to serialize the declaration for the artifact ["
+ artifact.getName() + "]: " + e.getMessage()), e);
}
}
代码示例来源:origin: org.mule.runtime/mule-core-tests
@Test
public void cachesXmlFactory() {
DocumentBuilderFactory documentBuilderFactoryOne = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
DocumentBuilderFactory documentBuilderFactoryTwo = XMLSecureFactories.createDefault().getDocumentBuilderFactory();
assertThat(documentBuilderFactoryOne, sameInstance(documentBuilderFactoryTwo));
}
代码示例来源:origin: org.mule.runtime/mule-core-tests
@Test
public void createsTheCorrectInstances() {
XMLSecureFactories xmlSecureFactories = XMLSecureFactories.createDefault();
// As there are casts inside, creation would fail if the appropriate type is not returned
assertThat(xmlSecureFactories.getDocumentBuilderFactory(), notNullValue());
assertThat(xmlSecureFactories.getSAXParserFactory(), notNullValue());
assertThat(xmlSecureFactories.getXMLInputFactory(), notNullValue());
assertThat(xmlSecureFactories.getTransformerFactory(), notNullValue());
}
内容来源于网络,如有侵权,请联系作者删除!