From 20c137494abae66785bc6c0200c1fcd58359b653 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1s=C3=A1ry=20D=C3=A1niel?= Date: Wed, 11 Oct 2017 13:06:16 +0000 Subject: [PATCH] git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube;C30586 --- server/-configuration/log4j2.xml | 2 +- .../src/user/commons/MediaCubeMarker.java | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 server/user.jobengine.osgi.commons/src/user/commons/MediaCubeMarker.java diff --git a/server/-configuration/log4j2.xml b/server/-configuration/log4j2.xml index 49bce29b..b549b819 100644 --- a/server/-configuration/log4j2.xml +++ b/server/-configuration/log4j2.xml @@ -57,6 +57,6 @@ - + \ No newline at end of file diff --git a/server/user.jobengine.osgi.commons/src/user/commons/MediaCubeMarker.java b/server/user.jobengine.osgi.commons/src/user/commons/MediaCubeMarker.java new file mode 100644 index 00000000..52fe5ed9 --- /dev/null +++ b/server/user.jobengine.osgi.commons/src/user/commons/MediaCubeMarker.java @@ -0,0 +1,23 @@ +package user.commons; + +import org.apache.logging.log4j.MarkerManager.Log4jMarker; + +@SuppressWarnings("serial") +public class MediaCubeMarker extends Log4jMarker { + private static final String MEDIACUBE = "MEDIACUBE"; + private String to; + + public MediaCubeMarker(String to) { + super(MEDIACUBE); + this.to = to; + } + + public String getTo() { + return to; + } + + public void setTo(String to) { + this.to = to; + } + +} -- 2.54.0