mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
CST-12144 checkstyle!
This commit is contained in:
@@ -7,10 +7,7 @@
|
||||
*/
|
||||
package org.dspace.app.ldn.action;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.Set;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
@@ -51,7 +48,7 @@ public class LDNCorrectionAction implements LDNAction {
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
public String getQaEventTopic() {
|
||||
return qaEventTopic;
|
||||
}
|
||||
|
@@ -457,7 +457,8 @@ public class QAEventServiceImpl implements QAEventService {
|
||||
}
|
||||
|
||||
private String[] getSupportedSources() {
|
||||
return configurationService.getArrayProperty("qaevent.sources", new String[] { QAEvent.OPENAIRE_SOURCE, QAEvent.COAR_NOTIFY });
|
||||
return configurationService.getArrayProperty("qaevent.sources",
|
||||
new String[] { QAEvent.OPENAIRE_SOURCE, QAEvent.COAR_NOTIFY });
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -49,7 +49,8 @@ public final class NotifyServicePatchUtils {
|
||||
try {
|
||||
if (operation.getValue() != null) {
|
||||
if (operation.getValue() instanceof JsonValueEvaluator) {
|
||||
inboundPattern = objectMapper.readValue(((JsonValueEvaluator) operation.getValue()).getValueNode().toString(),
|
||||
inboundPattern = objectMapper.readValue(
|
||||
((JsonValueEvaluator) operation.getValue()).getValueNode().toString(),
|
||||
NotifyServiceInboundPattern.class);
|
||||
}
|
||||
}
|
||||
@@ -75,7 +76,8 @@ public final class NotifyServicePatchUtils {
|
||||
try {
|
||||
if (operation.getValue() != null) {
|
||||
if (operation.getValue() instanceof JsonValueEvaluator) {
|
||||
outboundPattern = objectMapper.readValue(((JsonValueEvaluator) operation.getValue()).getValueNode().toString(),
|
||||
outboundPattern = objectMapper.readValue(
|
||||
((JsonValueEvaluator) operation.getValue()).getValueNode().toString(),
|
||||
NotifyServiceOutboundPattern.class);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user