Repository: polygene-java Updated Branches: refs/heads/develop 4048ec947 -> 55ea6c5ab
Feed the Rat⢠with license headers Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/55ea6c5a Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/55ea6c5a Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/55ea6c5a Branch: refs/heads/develop Commit: 55ea6c5ab1326b52f4abb5d0ed3768126d857415 Parents: 4048ec9 Author: Paul Merlin <[email protected]> Authored: Mon Apr 3 18:49:09 2017 +0200 Committer: Paul Merlin <[email protected]> Committed: Mon Apr 3 18:49:09 2017 +0200 ---------------------------------------------------------------------- .../javaxxml/deserializer-normalization.xsl | 17 +++++++++++ .../javaxxml/JavaxXmlAdaptersTest.java | 17 +++++++++++ .../src/test/resources/configtest.xml | 31 +++++++++++++++++++- 3 files changed, 64 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/55ea6c5a/extensions/serialization-javaxxml/src/main/resources/org/apache/polygene/serialization/javaxxml/deserializer-normalization.xsl ---------------------------------------------------------------------- diff --git a/extensions/serialization-javaxxml/src/main/resources/org/apache/polygene/serialization/javaxxml/deserializer-normalization.xsl b/extensions/serialization-javaxxml/src/main/resources/org/apache/polygene/serialization/javaxxml/deserializer-normalization.xsl index 6c8505b..e7495d7 100644 --- a/extensions/serialization-javaxxml/src/main/resources/org/apache/polygene/serialization/javaxxml/deserializer-normalization.xsl +++ b/extensions/serialization-javaxxml/src/main/resources/org/apache/polygene/serialization/javaxxml/deserializer-normalization.xsl @@ -1,4 +1,21 @@ <?xml version="1.1" encoding="UTF-8" standalone="yes"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one + ~ or more contributor license agreements. See the NOTICE file + ~ distributed with this work for additional information + ~ regarding copyright ownership. The ASF licenses this file + ~ to you under the Apache License, Version 2.0 (the + ~ "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:strip-space elements="*"/> <xsl:template match="@*|node()"> http://git-wip-us.apache.org/repos/asf/polygene-java/blob/55ea6c5a/extensions/serialization-javaxxml/src/test/java/org/apache/polygene/serialization/javaxxml/JavaxXmlAdaptersTest.java ---------------------------------------------------------------------- diff --git a/extensions/serialization-javaxxml/src/test/java/org/apache/polygene/serialization/javaxxml/JavaxXmlAdaptersTest.java b/extensions/serialization-javaxxml/src/test/java/org/apache/polygene/serialization/javaxxml/JavaxXmlAdaptersTest.java index 921c214..f68ccb4 100644 --- a/extensions/serialization-javaxxml/src/test/java/org/apache/polygene/serialization/javaxxml/JavaxXmlAdaptersTest.java +++ b/extensions/serialization-javaxxml/src/test/java/org/apache/polygene/serialization/javaxxml/JavaxXmlAdaptersTest.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.polygene.serialization.javaxxml; import javax.xml.parsers.DocumentBuilderFactory; http://git-wip-us.apache.org/repos/asf/polygene-java/blob/55ea6c5a/extensions/serialization-javaxxml/src/test/resources/configtest.xml ---------------------------------------------------------------------- diff --git a/extensions/serialization-javaxxml/src/test/resources/configtest.xml b/extensions/serialization-javaxxml/src/test/resources/configtest.xml index 0f6bc4c..5bb3a3b 100644 --- a/extensions/serialization-javaxxml/src/test/resources/configtest.xml +++ b/extensions/serialization-javaxxml/src/test/resources/configtest.xml @@ -1 +1,30 @@ -<?xml version="1.1" encoding="UTF-8" standalone="yes"?><state><value><identity>configtest</identity><host><value _type="org.apache.polygene.test.entity.AbstractConfigurationDeserializationTest$Host"><ip>12.23.34.45</ip><port>1234</port></value></host><name>main</name></value></state> +<?xml version="1.1" encoding="UTF-8" standalone="yes"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one + ~ or more contributor license agreements. See the NOTICE file + ~ distributed with this work for additional information + ~ regarding copyright ownership. The ASF licenses this file + ~ to you under the Apache License, Version 2.0 (the + ~ "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<state> + <value> + <identity>configtest</identity> + <host> + <value _type="org.apache.polygene.test.entity.AbstractConfigurationDeserializationTest$Host"> + <ip>12.23.34.45</ip> + <port>1234</port> + </value> + </host> + <name>main</name> + </value> +</state>
