Skip to content

Commit 483103b

Browse files
committed
Create javaintegration package
The `javaintegration` package contains modules for integrating Metafacture pipelines with Java.
1 parent 32e0a10 commit 483103b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+45
-46
lines changed

src/main/java/org/culturegraph/mf/stream/sink/Collector.java renamed to src/main/java/org/culturegraph/mf/javaintegration/Collector.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1717

1818
import java.util.Collection;
1919

src/main/java/org/culturegraph/mf/stream/sink/EventList.java renamed to src/main/java/org/culturegraph/mf/javaintegration/EventList.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1817

1918
import java.util.ArrayList;
2019
import java.util.Collections;

src/main/java/org/culturegraph/mf/stream/converter/MapToStream.java renamed to src/main/java/org/culturegraph/mf/javaintegration/MapToStream.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.javaintegration;
1717

1818
import java.util.Map;
1919

src/main/java/org/culturegraph/mf/stream/sink/NamedValueList.java renamed to src/main/java/org/culturegraph/mf/javaintegration/NamedValueList.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1717

1818
import java.util.ArrayList;
1919
import java.util.Collection;

src/main/java/org/culturegraph/mf/stream/sink/NamedValueSet.java renamed to src/main/java/org/culturegraph/mf/javaintegration/NamedValueSet.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1717

1818
import java.util.Collection;
1919
import java.util.HashSet;

src/main/java/org/culturegraph/mf/stream/pipe/ObjectCollector.java renamed to src/main/java/org/culturegraph/mf/javaintegration/ObjectCollector.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.javaintegration;
1717

1818
import java.util.LinkedList;
1919
import java.util.Queue;

src/main/java/org/culturegraph/mf/stream/sink/SingleValue.java renamed to src/main/java/org/culturegraph/mf/javaintegration/SingleValue.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1717

1818
import java.util.Collection;
1919

src/main/java/org/culturegraph/mf/stream/sink/StringListMap.java renamed to src/main/java/org/culturegraph/mf/javaintegration/StringListMap.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1717

1818
import java.util.Collection;
1919
import java.util.List;

src/main/java/org/culturegraph/mf/stream/converter/StringListMapToStream.java renamed to src/main/java/org/culturegraph/mf/javaintegration/StringListMapToStream.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.javaintegration;
1717

1818
import java.util.List;
1919
import java.util.Map.Entry;

src/main/java/org/culturegraph/mf/stream/sink/StringMap.java renamed to src/main/java/org/culturegraph/mf/javaintegration/StringMap.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.sink;
16+
package org.culturegraph.mf.javaintegration;
1717

1818
import java.util.Collection;
1919
import java.util.HashMap;

0 commit comments

Comments
 (0)