From: Vásáry Dániel Date: Wed, 11 Oct 2017 13:06:16 +0000 (+0000) Subject: git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube... X-Git-Url: http://git.useribm.hu/?a=commitdiff_plain;h=20c137494abae66785bc6c0200c1fcd58359b653;p=mediacube.git git-tfs-id: [tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube;C30586 --- 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; + } + +}