blob: ffae5ca6a7cc3c4270f84aa91e018c816f51fd9b [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../../../javadoc.css" title="Style">
</head>
<body>
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span>// ***************************************************************************************************************************<a name="line.1"></a>
<span class="sourceLineNo">002</span>// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *<a name="line.2"></a>
<span class="sourceLineNo">003</span>// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *<a name="line.3"></a>
<span class="sourceLineNo">004</span>// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *<a name="line.4"></a>
<span class="sourceLineNo">005</span>// * with the License. You may obtain a copy of the License at *<a name="line.5"></a>
<span class="sourceLineNo">006</span>// * *<a name="line.6"></a>
<span class="sourceLineNo">007</span>// * http://www.apache.org/licenses/LICENSE-2.0 *<a name="line.7"></a>
<span class="sourceLineNo">008</span>// * *<a name="line.8"></a>
<span class="sourceLineNo">009</span>// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *<a name="line.9"></a>
<span class="sourceLineNo">010</span>// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *<a name="line.10"></a>
<span class="sourceLineNo">011</span>// * specific language governing permissions and limitations under the License. *<a name="line.11"></a>
<span class="sourceLineNo">012</span>// ***************************************************************************************************************************<a name="line.12"></a>
<span class="sourceLineNo">013</span>package org.apache.juneau.jena.annotation;<a name="line.13"></a>
<span class="sourceLineNo">014</span><a name="line.14"></a>
<span class="sourceLineNo">015</span>import org.apache.juneau.*;<a name="line.15"></a>
<span class="sourceLineNo">016</span>import org.apache.juneau.jena.*;<a name="line.16"></a>
<span class="sourceLineNo">017</span>import org.apache.juneau.reflect.*;<a name="line.17"></a>
<span class="sourceLineNo">018</span>import org.apache.juneau.svl.*;<a name="line.18"></a>
<span class="sourceLineNo">019</span>import org.apache.juneau.xml.*;<a name="line.19"></a>
<span class="sourceLineNo">020</span><a name="line.20"></a>
<span class="sourceLineNo">021</span>/**<a name="line.21"></a>
<span class="sourceLineNo">022</span> * Utility classes and methods for the {@link RdfConfig @RdfConfig} annotation.<a name="line.22"></a>
<span class="sourceLineNo">023</span> *<a name="line.23"></a>
<span class="sourceLineNo">024</span> * &lt;ul class='seealso'&gt;<a name="line.24"></a>
<span class="sourceLineNo">025</span> * &lt;li class='link'&gt;{@doc jmr.RdfDetails}<a name="line.25"></a>
<span class="sourceLineNo">026</span> * &lt;li class='extlink'&gt;{@source}<a name="line.26"></a>
<span class="sourceLineNo">027</span> * &lt;/ul&gt;<a name="line.27"></a>
<span class="sourceLineNo">028</span> */<a name="line.28"></a>
<span class="sourceLineNo">029</span>public class RdfConfigAnnotation {<a name="line.29"></a>
<span class="sourceLineNo">030</span><a name="line.30"></a>
<span class="sourceLineNo">031</span> /**<a name="line.31"></a>
<span class="sourceLineNo">032</span> * Applies {@link RdfConfig} annotations to a {@link org.apache.juneau.jena.RdfSerializer.Builder}.<a name="line.32"></a>
<span class="sourceLineNo">033</span> */<a name="line.33"></a>
<span class="sourceLineNo">034</span> public static class SerializerApply extends AnnotationApplier&lt;RdfConfig,RdfSerializer.Builder&gt; {<a name="line.34"></a>
<span class="sourceLineNo">035</span><a name="line.35"></a>
<span class="sourceLineNo">036</span> /**<a name="line.36"></a>
<span class="sourceLineNo">037</span> * Constructor.<a name="line.37"></a>
<span class="sourceLineNo">038</span> *<a name="line.38"></a>
<span class="sourceLineNo">039</span> * @param vr The resolver for resolving values in annotations.<a name="line.39"></a>
<span class="sourceLineNo">040</span> */<a name="line.40"></a>
<span class="sourceLineNo">041</span> public SerializerApply(VarResolverSession vr) {<a name="line.41"></a>
<span class="sourceLineNo">042</span> super(RdfConfig.class, RdfSerializer.Builder.class, vr);<a name="line.42"></a>
<span class="sourceLineNo">043</span> }<a name="line.43"></a>
<span class="sourceLineNo">044</span><a name="line.44"></a>
<span class="sourceLineNo">045</span> @Override<a name="line.45"></a>
<span class="sourceLineNo">046</span> public void apply(AnnotationInfo&lt;RdfConfig&gt; ai, RdfSerializer.Builder b) {<a name="line.46"></a>
<span class="sourceLineNo">047</span> RdfConfig a = ai.inner();<a name="line.47"></a>
<span class="sourceLineNo">048</span><a name="line.48"></a>
<span class="sourceLineNo">049</span> string(a.language()).ifPresent(x -&gt; b.language(x));<a name="line.49"></a>
<span class="sourceLineNo">050</span> string(a.juneauNs()).map(Namespace::of).ifPresent(x -&gt; b.juneauNs(x));<a name="line.50"></a>
<span class="sourceLineNo">051</span> string(a.juneauBpNs()).map(Namespace::of).ifPresent(x -&gt; b.juneauBpNs(x));<a name="line.51"></a>
<span class="sourceLineNo">052</span> bool(a.disableUseXmlNamespaces()).ifPresent(x -&gt; b.disableUseXmlNamespaces(x));<a name="line.52"></a>
<span class="sourceLineNo">053</span> string(a.collectionFormat()).map(RdfCollectionFormat::valueOf).ifPresent(x -&gt; b.collectionFormat(x));<a name="line.53"></a>
<span class="sourceLineNo">054</span> bool(a.looseCollections()).ifPresent(x -&gt; b.looseCollections(x));<a name="line.54"></a>
<span class="sourceLineNo">055</span> bool(a.addBeanTypes()).ifPresent(x -&gt; b.addBeanTypesRdf(x));<a name="line.55"></a>
<span class="sourceLineNo">056</span> bool(a.addLiteralTypes()).ifPresent(x -&gt; b.addLiteralTypes(x));<a name="line.56"></a>
<span class="sourceLineNo">057</span> bool(a.addRootProperty()).ifPresent(x -&gt; b.addRootProperty(x));<a name="line.57"></a>
<span class="sourceLineNo">058</span> bool(a.disableAutoDetectNamespaces()).ifPresent(x -&gt; b.disableAutoDetectNamespaces(x));<a name="line.58"></a>
<span class="sourceLineNo">059</span> strings(a.namespaces()).map(Namespace::createArray).ifPresent(x -&gt; b.namespaces(x));<a name="line.59"></a>
<span class="sourceLineNo">060</span> string(a.rdfxml_iriRules()).ifPresent(x -&gt; b.rdfxml_iriRules(x));<a name="line.60"></a>
<span class="sourceLineNo">061</span> string(a.rdfxml_errorMode()).ifPresent(x -&gt; b.rdfxml_errorMode(x));<a name="line.61"></a>
<span class="sourceLineNo">062</span> bool(a.rdfxml_embedding()).ifPresent(x -&gt; b.rdfxml_embedding(x));<a name="line.62"></a>
<span class="sourceLineNo">063</span> string(a.rdfxml_xmlBase()).ifPresent(x -&gt; b.rdfxml_xmlbase(x));<a name="line.63"></a>
<span class="sourceLineNo">064</span> bool(a.rdfxml_longId()).ifPresent(x -&gt; b.rdfxml_longId(x));<a name="line.64"></a>
<span class="sourceLineNo">065</span> bool(a.rdfxml_allowBadUris()).ifPresent(x -&gt; b.rdfxml_allowBadUris(x));<a name="line.65"></a>
<span class="sourceLineNo">066</span> string(a.rdfxml_relativeUris()).ifPresent(x -&gt; b.rdfxml_relativeUris(x));<a name="line.66"></a>
<span class="sourceLineNo">067</span> string(a.rdfxml_showXmlDeclaration()).ifPresent(x -&gt; b.rdfxml_showXmlDeclaration(x));<a name="line.67"></a>
<span class="sourceLineNo">068</span> bool(a.rdfxml_disableShowDoctypeDeclaration()).ifPresent(x -&gt; b.rdfxml_disableShowDoctypeDeclaration(x));<a name="line.68"></a>
<span class="sourceLineNo">069</span> integer(a.rdfxml_tab(), "rdfxml_tab").ifPresent(x -&gt; b.rdfxml_tab(x));<a name="line.69"></a>
<span class="sourceLineNo">070</span> string(a.rdfxml_attributeQuoteChar()).map(x -&gt; x.charAt(0)).ifPresent(x -&gt; b.rdfxml_attributeQuoteChar(x));<a name="line.70"></a>
<span class="sourceLineNo">071</span> string(a.rdfxml_blockRules()).ifPresent(x -&gt; b.rdfxml_blockRules(x));<a name="line.71"></a>
<span class="sourceLineNo">072</span> integer(a.n3_minGap(), "n3_minGap").ifPresent(x -&gt; b.n3_minGap(x));<a name="line.72"></a>
<span class="sourceLineNo">073</span> bool(a.n3_disableObjectLists()).ifPresent(x -&gt; b.n3_disableObjectLists(x));<a name="line.73"></a>
<span class="sourceLineNo">074</span> integer(a.n3_subjectColumn(), "n3_subjectColumn").ifPresent(x -&gt; b.n3_subjectColumn(x));<a name="line.74"></a>
<span class="sourceLineNo">075</span> integer(a.n3_propertyColumn(), "n3_propertyColumn").ifPresent(x -&gt; b.n3_propertyColumn(x));<a name="line.75"></a>
<span class="sourceLineNo">076</span> integer(a.n3_indentProperty(), "n3_indentProperty").ifPresent(x -&gt; b.n3_indentProperty(x));<a name="line.76"></a>
<span class="sourceLineNo">077</span> integer(a.n3_widePropertyLen(), "n3_widePropertyLen").ifPresent(x -&gt; b.n3_widePropertyLen(x));<a name="line.77"></a>
<span class="sourceLineNo">078</span> bool(a.n3_disableAbbrevBaseUri()).ifPresent(x -&gt; b.n3_disableAbbrevBaseUri(x));<a name="line.78"></a>
<span class="sourceLineNo">079</span> bool(a.n3_disableUsePropertySymbols()).ifPresent(x -&gt; b.n3_disableUsePropertySymbols(x));<a name="line.79"></a>
<span class="sourceLineNo">080</span> bool(a.n3_disableUseTripleQuotedStrings()).ifPresent(x -&gt; b.n3_disableUseTripleQuotedStrings(x));<a name="line.80"></a>
<span class="sourceLineNo">081</span> bool(a.n3_disableUseDoubles()).ifPresent(x -&gt; b.n3_disableUseDoubles(x));<a name="line.81"></a>
<span class="sourceLineNo">082</span> }<a name="line.82"></a>
<span class="sourceLineNo">083</span> }<a name="line.83"></a>
<span class="sourceLineNo">084</span><a name="line.84"></a>
<span class="sourceLineNo">085</span> /**<a name="line.85"></a>
<span class="sourceLineNo">086</span> * Applies {@link RdfConfig} annotations to a {@link org.apache.juneau.jena.RdfParser.Builder}.<a name="line.86"></a>
<span class="sourceLineNo">087</span> */<a name="line.87"></a>
<span class="sourceLineNo">088</span> public static class ParserApply extends AnnotationApplier&lt;RdfConfig,RdfParser.Builder&gt; {<a name="line.88"></a>
<span class="sourceLineNo">089</span><a name="line.89"></a>
<span class="sourceLineNo">090</span> /**<a name="line.90"></a>
<span class="sourceLineNo">091</span> * Constructor.<a name="line.91"></a>
<span class="sourceLineNo">092</span> *<a name="line.92"></a>
<span class="sourceLineNo">093</span> * @param vr The resolver for resolving values in annotations.<a name="line.93"></a>
<span class="sourceLineNo">094</span> */<a name="line.94"></a>
<span class="sourceLineNo">095</span> public ParserApply(VarResolverSession vr) {<a name="line.95"></a>
<span class="sourceLineNo">096</span> super(RdfConfig.class, RdfParser.Builder.class, vr);<a name="line.96"></a>
<span class="sourceLineNo">097</span> }<a name="line.97"></a>
<span class="sourceLineNo">098</span><a name="line.98"></a>
<span class="sourceLineNo">099</span> @Override<a name="line.99"></a>
<span class="sourceLineNo">100</span> public void apply(AnnotationInfo&lt;RdfConfig&gt; ai, RdfParser.Builder b) {<a name="line.100"></a>
<span class="sourceLineNo">101</span> RdfConfig a = ai.inner();<a name="line.101"></a>
<span class="sourceLineNo">102</span><a name="line.102"></a>
<span class="sourceLineNo">103</span> string(a.language()).ifPresent(x -&gt; b.language(x));<a name="line.103"></a>
<span class="sourceLineNo">104</span> string(a.juneauNs()).map(Namespace::of).ifPresent(x -&gt; b.juneauNs(x));<a name="line.104"></a>
<span class="sourceLineNo">105</span> string(a.juneauBpNs()).map(Namespace::of).ifPresent(x -&gt; b.juneauBpNs(x));<a name="line.105"></a>
<span class="sourceLineNo">106</span> string(a.collectionFormat()).map(RdfCollectionFormat::valueOf).ifPresent(x -&gt; b.collectionFormat(x));<a name="line.106"></a>
<span class="sourceLineNo">107</span> bool(a.looseCollections()).ifPresent(x -&gt; b.looseCollections(x));<a name="line.107"></a>
<span class="sourceLineNo">108</span> bool(a.trimWhitespace()).ifPresent(x -&gt; b.trimWhitespace(x));<a name="line.108"></a>
<span class="sourceLineNo">109</span> string(a.rdfxml_iriRules()).ifPresent(x -&gt; b.rdfxml_iriRules(x));<a name="line.109"></a>
<span class="sourceLineNo">110</span> string(a.rdfxml_errorMode()).ifPresent(x -&gt; b.rdfxml_errorMode(x));<a name="line.110"></a>
<span class="sourceLineNo">111</span> bool(a.rdfxml_embedding()).ifPresent(x -&gt; b.rdfxml_embedding(x));<a name="line.111"></a>
<span class="sourceLineNo">112</span> string(a.rdfxml_xmlBase()).ifPresent(x -&gt; b.rdfxml_xmlbase(x));<a name="line.112"></a>
<span class="sourceLineNo">113</span> bool(a.rdfxml_longId()).ifPresent(x -&gt; b.rdfxml_longId(x));<a name="line.113"></a>
<span class="sourceLineNo">114</span> bool(a.rdfxml_allowBadUris()).ifPresent(x -&gt; b.rdfxml_allowBadUris(x));<a name="line.114"></a>
<span class="sourceLineNo">115</span> string(a.rdfxml_relativeUris()).ifPresent(x -&gt; b.rdfxml_relativeUris(x));<a name="line.115"></a>
<span class="sourceLineNo">116</span> string(a.rdfxml_showXmlDeclaration()).ifPresent(x -&gt; b.rdfxml_showXmlDeclaration(x));<a name="line.116"></a>
<span class="sourceLineNo">117</span> bool(a.rdfxml_disableShowDoctypeDeclaration()).ifPresent(x -&gt; b.rdfxml_disableShowDoctypeDeclaration(x));<a name="line.117"></a>
<span class="sourceLineNo">118</span> integer(a.rdfxml_tab(), "rdfxml_tab").ifPresent(x -&gt; b.rdfxml_tab(x));<a name="line.118"></a>
<span class="sourceLineNo">119</span> string(a.rdfxml_attributeQuoteChar()).map(x -&gt; x.charAt(0)).ifPresent(x -&gt; b.rdfxml_attributeQuoteChar(x));<a name="line.119"></a>
<span class="sourceLineNo">120</span> string(a.rdfxml_blockRules()).ifPresent(x -&gt; b.rdfxml_blockRules(x));<a name="line.120"></a>
<span class="sourceLineNo">121</span> integer(a.n3_minGap(), "n3_minGap").ifPresent(x -&gt; b.n3_minGap(x));<a name="line.121"></a>
<span class="sourceLineNo">122</span> bool(a.n3_disableObjectLists()).ifPresent(x -&gt; b.n3_disableObjectLists(x));<a name="line.122"></a>
<span class="sourceLineNo">123</span> integer(a.n3_subjectColumn(), "n3_subjectColumn").ifPresent(x -&gt; b.n3_subjectColumn(x));<a name="line.123"></a>
<span class="sourceLineNo">124</span> integer(a.n3_propertyColumn(), "n3_propertyColumn").ifPresent(x -&gt; b.n3_propertyColumn(x));<a name="line.124"></a>
<span class="sourceLineNo">125</span> integer(a.n3_indentProperty(), "n3_indentProperty").ifPresent(x -&gt; b.n3_indentProperty(x));<a name="line.125"></a>
<span class="sourceLineNo">126</span> integer(a.n3_widePropertyLen(), "n3_widePropertyLen").ifPresent(x -&gt; b.n3_widePropertyLen(x));<a name="line.126"></a>
<span class="sourceLineNo">127</span> bool(a.n3_disableAbbrevBaseUri()).ifPresent(x -&gt; b.n3_disableAbbrevBaseUri(x));<a name="line.127"></a>
<span class="sourceLineNo">128</span> bool(a.n3_disableUsePropertySymbols()).ifPresent(x -&gt; b.n3_disableUsePropertySymbols(x));<a name="line.128"></a>
<span class="sourceLineNo">129</span> bool(a.n3_disableUseTripleQuotedStrings()).ifPresent(x -&gt; b.n3_disableUseTripleQuotedStrings(x));<a name="line.129"></a>
<span class="sourceLineNo">130</span> bool(a.n3_disableUseDoubles()).ifPresent(x -&gt; b.n3_disableUseDoubles(x));<a name="line.130"></a>
<span class="sourceLineNo">131</span> }<a name="line.131"></a>
<span class="sourceLineNo">132</span> }<a name="line.132"></a>
<span class="sourceLineNo">133</span>}<a name="line.133"></a>
</pre>
</div>
</body>
</html>