From 7a715c03ee9685b4e91a43c80c46749715ee34b1 Mon Sep 17 00:00:00 2001 From: erbel <johannes.erbel@cs.uni-goettingen.de> Date: Fri, 18 Jan 2019 09:41:57 +0100 Subject: [PATCH] Added License Header --- src/main/java/de/ugoe/cs/rwm/mocci/AbsScaler.java | 10 ++++++++++ src/main/java/de/ugoe/cs/rwm/mocci/DownScaler.java | 10 ++++++++++ .../java/de/ugoe/cs/rwm/mocci/InitialDeployment.java | 10 ++++++++++ src/main/java/de/ugoe/cs/rwm/mocci/MAPE.java | 10 ++++++++++ src/main/java/de/ugoe/cs/rwm/mocci/Monitor.java | 10 ++++++++++ .../de/ugoe/cs/rwm/mocci/RegistryAndLoggerSetup.java | 10 ++++++++++ src/main/java/de/ugoe/cs/rwm/mocci/UpScaler.java | 10 ++++++++++ 7 files changed, 70 insertions(+) diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/AbsScaler.java b/src/main/java/de/ugoe/cs/rwm/mocci/AbsScaler.java index c3aa315..0d14d01 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/AbsScaler.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/AbsScaler.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; import java.nio.file.Path; diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/DownScaler.java b/src/main/java/de/ugoe/cs/rwm/mocci/DownScaler.java index 34db999..0d20ceb 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/DownScaler.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/DownScaler.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; import java.nio.file.Path; diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/InitialDeployment.java b/src/main/java/de/ugoe/cs/rwm/mocci/InitialDeployment.java index 46d3f64..8a18857 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/InitialDeployment.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/InitialDeployment.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; import java.io.File; diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/MAPE.java b/src/main/java/de/ugoe/cs/rwm/mocci/MAPE.java index da284f7..6bf3f35 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/MAPE.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/MAPE.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; import java.nio.file.Path; diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/Monitor.java b/src/main/java/de/ugoe/cs/rwm/mocci/Monitor.java index 7d7544c..647f158 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/Monitor.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/Monitor.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; public class Monitor { diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/RegistryAndLoggerSetup.java b/src/main/java/de/ugoe/cs/rwm/mocci/RegistryAndLoggerSetup.java index 205243a..b284bc9 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/RegistryAndLoggerSetup.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/RegistryAndLoggerSetup.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; diff --git a/src/main/java/de/ugoe/cs/rwm/mocci/UpScaler.java b/src/main/java/de/ugoe/cs/rwm/mocci/UpScaler.java index 0a67bcb..88ccfc2 100644 --- a/src/main/java/de/ugoe/cs/rwm/mocci/UpScaler.java +++ b/src/main/java/de/ugoe/cs/rwm/mocci/UpScaler.java @@ -1,3 +1,13 @@ +/** + * Copyright (c) 2018-2019 University of Goettingen + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * - Johannes Erbel <johannes.erbel@cs.uni-goettingen.de> + */ package de.ugoe.cs.rwm.mocci; import java.nio.file.Path; -- GitLab