From 82eb612efc0e0e726e61423a8ebba9289919c517 Mon Sep 17 00:00:00 2001 From: Marcello Monachesi Date: Sat, 30 Apr 2016 18:03:05 +0200 Subject: [PATCH] Added license and updated link --- README.md | Bin 10101 -> 10055 bytes build.gradle | 14 ++++++++++++ cli/build.gradle | 14 ++++++++++++ fault-correlator/build.gradle | 14 ++++++++++++ .../ConfigurationBeans.java | 14 ++++++++++++ .../NFVORequestorWrapperWrapper.java | 14 ++++++++++++ .../OpenbatonEvent.java | 14 ++++++++++++ .../OpenbatonEventReceiver.java | 14 ++++++++++++ .../RecoveryAction.java | 14 ++++++++++++ .../RecoveryActionStatus.java | 14 ++++++++++++ .../RecoveryActionType.java | 14 ++++++++++++ .../RestEventReceiver.java | 14 ++++++++++++ .../droolsconfig/DroolsAutoConfiguration.java | 14 ++++++++++++ .../KieSessionGlobalConfigurationImpl.java | 20 ++++++++++++------ .../exceptions/FaultCorrelatorException.java | 14 ++++++++++++ .../FaultManagementPolicyException.java | 14 ++++++++++++ .../exceptions/NFVORequestorException.java | 14 ++++++++++++ .../interfaces/EventNfvoReceiver.java | 14 ++++++++++++ .../interfaces/EventReceiver.java | 14 ++++++++++++ .../interfaces/FaultCorrelatorManager.java | 14 ++++++++++++ .../KieSessionGlobalConfiguration.java | 14 ++++++++++++ .../interfaces/NFVORequestorWrapper.java | 14 ++++++++++++ .../MonitoringManagerImpl.java | 14 ++++++++++++ .../policymanagement/PolicyManagerImpl.java | 14 ++++++++++++ .../catalogue/NetworkServiceRecordShort.java | 14 ++++++++++++ .../catalogue/VNFCInstanceShort.java | 14 ++++++++++++ .../catalogue/VirtualDeploymentUnitShort.java | 14 ++++++++++++ .../VirtualNetworkFunctionRecordShort.java | 14 ++++++++++++ .../main/resources/rules/fault_resolution.drl | 14 ++++++++++++ .../src/main/resources/rules/pre_rules.drl | 14 ++++++++++++ .../resources/rules/vnfm_fault_correlator.drl | 14 ++++++++++++ gradle.properties | 2 +- gradle/application.java.gradle | 14 ++++++++++++ gradle/run.application.java.gradle | 14 ++++++++++++ high-availability/build.gradle | 14 ++++++++++++ .../ha/HighAvailabilityManager.java | 14 ++++++++++++ .../ha/HighAvailabilityManagerImpl.java | 14 ++++++++++++ .../exceptions/HighAvailabilityException.java | 14 ++++++++++++ openbaton-fm.sh | 15 +++++++++++++ settings.gradle | 14 ++++++++++++ .../faultmanagement/Application.java | 14 ++++++++++++ .../faultmanagement/system/SystemStartup.java | 14 ++++++++++++ src/main/resources/application.properties | 15 +++++++++++++ 43 files changed, 577 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 16b761839a46a8d9d3d9f925f259e1071c7f82c8..a4c668bbe082240fb1322e297b085fc09dd21fdc 100644 GIT binary patch delta 47 zcmezBcieBnyNO>FITQ+t^0QKtOE!x!u4UYOgGp0~w<<9yDYHViAg44vGjFqosxK1& D?86d; delta 93 zcmX@^_tkI0JNA_PWQF`Rg^BMJH;Xf_WfV!zEKx|#NKMYpFD+3>Ni9pw$uHP^m`O`X o9jLNcKPe|aNgpb#4;HCPOiIeE&@IR*P0!5J%T3w*OU0K70KD@g0RR91 diff --git a/build.gradle b/build.gradle index 6af1698f..0c6dd6fd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ apply plugin: 'java' apply from: 'gradle/application.java.gradle' diff --git a/cli/build.gradle b/cli/build.gradle index 08ab6ec3..a188f5db 100644 --- a/cli/build.gradle +++ b/cli/build.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ group 'org.openbaton' version '1.0-SNAPSHOT' diff --git a/fault-correlator/build.gradle b/fault-correlator/build.gradle index 3e501574..3da33e1a 100644 --- a/fault-correlator/build.gradle +++ b/fault-correlator/build.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ group 'org.openbaton' version '1.0-SNAPSHOT' diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/ConfigurationBeans.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/ConfigurationBeans.java index 63512df3..d5d512c4 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/ConfigurationBeans.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/ConfigurationBeans.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; import com.google.gson.Gson; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/NFVORequestorWrapperWrapper.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/NFVORequestorWrapperWrapper.java index 494f8231..62d6cfa2 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/NFVORequestorWrapperWrapper.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/NFVORequestorWrapperWrapper.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; import com.google.gson.Gson; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEvent.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEvent.java index f5da8e3b..4421dd01 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEvent.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEvent.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; import org.openbaton.catalogue.mano.record.NetworkServiceRecord; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEventReceiver.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEventReceiver.java index e0838325..92a25768 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEventReceiver.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/OpenbatonEventReceiver.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; import com.google.gson.Gson; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryAction.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryAction.java index bcf05da2..d181d1ad 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryAction.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryAction.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionStatus.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionStatus.java index 9662f34c..c02bda0e 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionStatus.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionStatus.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionType.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionType.java index 01241d79..d44cdd26 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionType.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RecoveryActionType.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RestEventReceiver.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RestEventReceiver.java index 006901e6..28b504fb 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RestEventReceiver.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/RestEventReceiver.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc; import org.kie.api.runtime.KieSession; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/DroolsAutoConfiguration.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/DroolsAutoConfiguration.java index 98d89981..5ad4216e 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/DroolsAutoConfiguration.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/DroolsAutoConfiguration.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.droolsconfig; import org.kie.api.KieBase; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/KieSessionGlobalConfigurationImpl.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/KieSessionGlobalConfigurationImpl.java index 3dd554d5..92440461 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/KieSessionGlobalConfigurationImpl.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/droolsconfig/KieSessionGlobalConfigurationImpl.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.droolsconfig; import org.kie.api.runtime.KieSession; @@ -58,11 +72,5 @@ public void run() { kieSession.fireUntilHalt(); } }).start(); - - /*VRAlarm vrAlarm = new VRAlarm(); - vrAlarm.setManagedObject("elasticapp-300"); - vrAlarm.setAlarmState(AlarmState.FIRED); - vrAlarm.setPerceivedSeverity(PerceivedSeverity.CRITICAL); - kieSession.insert(vrAlarm);*/ } } diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultCorrelatorException.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultCorrelatorException.java index ec44f1db..fb4db943 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultCorrelatorException.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultCorrelatorException.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.exceptions; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultManagementPolicyException.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultManagementPolicyException.java index 6cae1441..1bafee0e 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultManagementPolicyException.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/FaultManagementPolicyException.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.exceptions; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/NFVORequestorException.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/NFVORequestorException.java index ce099428..c59d3867 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/NFVORequestorException.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/exceptions/NFVORequestorException.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.exceptions; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventNfvoReceiver.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventNfvoReceiver.java index 750d5084..1ebe0247 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventNfvoReceiver.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventNfvoReceiver.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.interfaces; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventReceiver.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventReceiver.java index 7f7d29c3..a2a4d35c 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventReceiver.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/EventReceiver.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.interfaces; import org.openbaton.catalogue.mano.common.faultmanagement.VNFAlarmNotification; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/FaultCorrelatorManager.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/FaultCorrelatorManager.java index b5ddd8e2..b455f186 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/FaultCorrelatorManager.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/FaultCorrelatorManager.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.interfaces; import org.openbaton.catalogue.mano.common.faultmanagement.VNFAlarmStateChangedNotification; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/KieSessionGlobalConfiguration.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/KieSessionGlobalConfiguration.java index 273d7111..ddf01eb5 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/KieSessionGlobalConfiguration.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/KieSessionGlobalConfiguration.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.interfaces; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/NFVORequestorWrapper.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/NFVORequestorWrapper.java index d0eeca59..52fe6f1f 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/NFVORequestorWrapper.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/interfaces/NFVORequestorWrapper.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.interfaces; import org.openbaton.catalogue.mano.descriptor.VirtualDeploymentUnit; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/MonitoringManagerImpl.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/MonitoringManagerImpl.java index a28c9217..0f9a4189 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/MonitoringManagerImpl.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/MonitoringManagerImpl.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.policymanagement; import org.openbaton.catalogue.mano.common.faultmanagement.Criteria; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/PolicyManagerImpl.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/PolicyManagerImpl.java index b15085ef..bda2c90c 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/PolicyManagerImpl.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/PolicyManagerImpl.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.policymanagement; import com.mashape.unirest.http.exceptions.UnirestException; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/NetworkServiceRecordShort.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/NetworkServiceRecordShort.java index 6f100f91..db518152 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/NetworkServiceRecordShort.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/NetworkServiceRecordShort.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.policymanagement.catalogue; import org.openbaton.catalogue.mano.common.faultmanagement.NSFaultManagementPolicy; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VNFCInstanceShort.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VNFCInstanceShort.java index 8bde4af3..9cc64a9f 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VNFCInstanceShort.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VNFCInstanceShort.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.policymanagement.catalogue; /** diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualDeploymentUnitShort.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualDeploymentUnitShort.java index 52066f65..19954ddc 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualDeploymentUnitShort.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualDeploymentUnitShort.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.policymanagement.catalogue; import java.util.ArrayList; diff --git a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualNetworkFunctionRecordShort.java b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualNetworkFunctionRecordShort.java index fb1a0a7f..aeea024f 100644 --- a/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualNetworkFunctionRecordShort.java +++ b/fault-correlator/src/main/java/org.openbaton.faultmanagement.fc/policymanagement/catalogue/VirtualNetworkFunctionRecordShort.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.fc.policymanagement.catalogue; import org.openbaton.catalogue.mano.common.faultmanagement.VRFaultManagementPolicy; diff --git a/fault-correlator/src/main/resources/rules/fault_resolution.drl b/fault-correlator/src/main/resources/rules/fault_resolution.drl index b55c72a0..f0ef1fd5 100644 --- a/fault-correlator/src/main/resources/rules/fault_resolution.drl +++ b/fault-correlator/src/main/resources/rules/fault_resolution.drl @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import org.openbaton.faultmanagement.fc.RecoveryAction import org.openbaton.faultmanagement.fc.RecoveryActionStatus diff --git a/fault-correlator/src/main/resources/rules/pre_rules.drl b/fault-correlator/src/main/resources/rules/pre_rules.drl index 84bce02b..b61a5adb 100644 --- a/fault-correlator/src/main/resources/rules/pre_rules.drl +++ b/fault-correlator/src/main/resources/rules/pre_rules.drl @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import org.openbaton.catalogue.mano.common.monitoring.* import org.openbaton.faultmanagement.fc.repositories.VRAlarmRepository import org.openbaton.faultmanagement.fc.repositories.VNFAlarmRepository diff --git a/fault-correlator/src/main/resources/rules/vnfm_fault_correlator.drl b/fault-correlator/src/main/resources/rules/vnfm_fault_correlator.drl index 5a524c33..ac9a2ebe 100644 --- a/fault-correlator/src/main/resources/rules/vnfm_fault_correlator.drl +++ b/fault-correlator/src/main/resources/rules/vnfm_fault_correlator.drl @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import org.openbaton.catalogue.mano.common.monitoring.* import org.openbaton.faultmanagement.fc.repositories.VRAlarmRepository import org.openbaton.faultmanagement.fc.repositories.VNFAlarmRepository diff --git a/gradle.properties b/gradle.properties index 01f085af..ff4c9caf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,6 +15,6 @@ # limitations under the License. # -version=0.16-SNAPSHOT +version=1.0.0-SNAPSHOT group=org.openbaton diff --git a/gradle/application.java.gradle b/gradle/application.java.gradle index d8d5d25e..24f4e61b 100644 --- a/gradle/application.java.gradle +++ b/gradle/application.java.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /** * Java related stuff */ diff --git a/gradle/run.application.java.gradle b/gradle/run.application.java.gradle index ed17fe00..3e787dee 100644 --- a/gradle/run.application.java.gradle +++ b/gradle/run.application.java.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ buildscript { repositories{ mavenCentral() diff --git a/high-availability/build.gradle b/high-availability/build.gradle index 1d8023af..b0b4918d 100644 --- a/high-availability/build.gradle +++ b/high-availability/build.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ group 'org.openbaton' version '1.0-SNAPSHOT' diff --git a/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManager.java b/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManager.java index a00dbc00..2a4a04aa 100644 --- a/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManager.java +++ b/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManager.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.ha; import com.mashape.unirest.http.exceptions.UnirestException; diff --git a/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManagerImpl.java b/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManagerImpl.java index 54e2d5a8..9592d329 100644 --- a/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManagerImpl.java +++ b/high-availability/src/main/java/org/openbaton/faultmanagement/ha/HighAvailabilityManagerImpl.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.ha; import com.google.gson.Gson; diff --git a/high-availability/src/main/java/org/openbaton/faultmanagement/ha/exceptions/HighAvailabilityException.java b/high-availability/src/main/java/org/openbaton/faultmanagement/ha/exceptions/HighAvailabilityException.java index 6c7dbe05..0f21cfdf 100644 --- a/high-availability/src/main/java/org/openbaton/faultmanagement/ha/exceptions/HighAvailabilityException.java +++ b/high-availability/src/main/java/org/openbaton/faultmanagement/ha/exceptions/HighAvailabilityException.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.ha.exceptions; /** diff --git a/openbaton-fm.sh b/openbaton-fm.sh index 95ff190a..19a66581 100755 --- a/openbaton-fm.sh +++ b/openbaton-fm.sh @@ -1,5 +1,20 @@ #!/bin/bash + # + # Copyright (c) 2015 Fraunhofer FOKUS + # Licensed under the Apache License, Version 2.0 (the "License"); + # you may not use this file except in compliance with the License. + # You may obtain a copy of the License at + # + # http://www.apache.org/licenses/LICENSE-2.0 + # + # Unless required by applicable law or agreed to in writing, software + # distributed under the License is distributed on an "AS IS" BASIS, + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + # See the License for the specific language governing permissions and + # limitations under the License. + # + source ./gradle.properties _version=${version} diff --git a/settings.gradle b/settings.gradle index 1f5cd5f1..4825c0dc 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ rootProject.name = 'openbaton-fm' include 'fault-correlator' include 'high-availability' diff --git a/src/main/java/org/openbaton/faultmanagement/Application.java b/src/main/java/org/openbaton/faultmanagement/Application.java index b95ad0a8..3f715b09 100644 --- a/src/main/java/org/openbaton/faultmanagement/Application.java +++ b/src/main/java/org/openbaton/faultmanagement/Application.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement; import org.springframework.boot.SpringApplication; diff --git a/src/main/java/org/openbaton/faultmanagement/system/SystemStartup.java b/src/main/java/org/openbaton/faultmanagement/system/SystemStartup.java index 430d69ed..b9b39876 100644 --- a/src/main/java/org/openbaton/faultmanagement/system/SystemStartup.java +++ b/src/main/java/org/openbaton/faultmanagement/system/SystemStartup.java @@ -1,3 +1,17 @@ +/* + * Copyright (c) 2015 Fraunhofer FOKUS + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.openbaton.faultmanagement.system; import com.google.gson.Gson; diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index c74307bd..e6788b0d 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,3 +1,18 @@ + # + # Copyright (c) 2015 Fraunhofer FOKUS + # Licensed under the Apache License, Version 2.0 (the "License"); + # you may not use this file except in compliance with the License. + # You may obtain a copy of the License at + # + # http://www.apache.org/licenses/LICENSE-2.0 + # + # Unless required by applicable law or agreed to in writing, software + # distributed under the License is distributed on an "AS IS" BASIS, + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + # See the License for the specific language governing permissions and + # limitations under the License. + # + #logging.level.org.springframework=INFO #logging.level.org.hibernate=INFO #logging.level.org.openbaton= DEBUG