Skip to content

Commit ac64e1f

Browse files
committed
Create linkeddata package
The `linkeddata` package contains modules for working with linked data and linked data formats.
1 parent 8ebddc9 commit ac64e1f

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

src/main/java/org/culturegraph/mf/stream/converter/BeaconReader.java renamed to src/main/java/org/culturegraph/mf/linkeddata/BeaconReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.stream.converter;
16+
package org.culturegraph.mf.linkeddata;
1717

1818
import java.io.BufferedReader;
1919
import java.io.IOException;

src/main/java/org/culturegraph/mf/stream/pipe/OreAggregationAdder.java renamed to src/main/java/org/culturegraph/mf/linkeddata/OreAggregationAdder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.stream.pipe;
16+
package org.culturegraph.mf.linkeddata;
1717

1818
import java.io.IOException;
1919
import java.util.Deque;

src/main/java/org/culturegraph/mf/stream/pipe/RdfMacroPipe.java renamed to src/main/java/org/culturegraph/mf/linkeddata/RdfMacroPipe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.stream.pipe;
16+
package org.culturegraph.mf.linkeddata;
1717

1818
import org.culturegraph.mf.framework.FluxCommand;
1919
import org.culturegraph.mf.framework.StreamReceiver;

src/main/resources/flux-commands.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ decode-xml org.culturegraph.mf.xml.XmlDecoder
5050
decode-string org.culturegraph.mf.strings.StringDecoder
5151
regex-decode org.culturegraph.mf.strings.RegexDecoder
5252

53-
read-beacon org.culturegraph.mf.stream.converter.BeaconReader
53+
read-beacon org.culturegraph.mf.linkeddata.BeaconReader
5454

5555
# XML-Handler:
5656
handle-cg-xml org.culturegraph.mf.xml.CGXmlHandler
@@ -97,7 +97,7 @@ defer-stream org.culturegraph.mf.flowcontrol.StreamDeferrer
9797
xml-tee org.culturegraph.mf.plumbing.XmlTee
9898

9999
stream-to-xml org.culturegraph.mf.xml.SimpleXmlEncoder
100-
rdf-macros org.culturegraph.mf.stream.pipe.RdfMacroPipe
100+
rdf-macros org.culturegraph.mf.linkeddata.RdfMacroPipe
101101

102102
batch-log org.culturegraph.mf.monitoring.StreamBatchLogger
103103
object-batch-log org.culturegraph.mf.monitoring.ObjectBatchLogger
@@ -133,7 +133,7 @@ split-xml-elements org.culturegraph.mf.xml.XmlElementSplitter
133133

134134
morph org.culturegraph.mf.metamorph.Metamorph
135135
filter org.culturegraph.mf.metamorph.Filter
136-
add-oreaggregation org.culturegraph.mf.stream.pipe.OreAggregationAdder
136+
add-oreaggregation org.culturegraph.mf.linkeddata.OreAggregationAdder
137137
digest-file org.culturegraph.mf.files.FileDigestCalculator
138138
reorder-triple org.culturegraph.mf.triples.TripleReorder
139139

src/test/java/org/culturegraph/mf/stream/pipe/OreAggregationAdderTest.java renamed to src/test/java/org/culturegraph/mf/linkeddata/OreAggregationAdderTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
* Copyright 2016 Christoph Böhme
3-
* Copyright 2013, 2014 Deutsche Nationalbibliothek
43
*
54
* Licensed under the Apache License, Version 2.0 the "License";
65
* you may not use this file except in compliance with the License.
@@ -14,7 +13,7 @@
1413
* See the License for the specific language governing permissions and
1514
* limitations under the License.
1615
*/
17-
package org.culturegraph.mf.stream.pipe;
16+
package org.culturegraph.mf.linkeddata;
1817

1918
import static org.mockito.Mockito.inOrder;
2019

0 commit comments

Comments
 (0)