You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2016/01/16 08:33:32 UTC

incubator-tamaya git commit: Fixed RAT issues.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master afb2d1a45 -> 77ec9ec12


Fixed RAT issues.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/77ec9ec1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/77ec9ec1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/77ec9ec1

Branch: refs/heads/master
Commit: 77ec9ec12fa782c44314232a7d0b13d22f6bee4b
Parents: afb2d1a
Author: anatole <an...@apache.org>
Authored: Sat Jan 16 08:33:25 2016 +0100
Committer: anatole <an...@apache.org>
Committed: Sat Jan 16 08:33:25 2016 +0100

----------------------------------------------------------------------
 .../org/apache/tamaya/etcd/EtcdBackends.java    | 20 +++++++++++++++++++-
 .../etcd/internal/EtcdConfigChangeRequest.java  | 18 ++++++++++++++++++
 2 files changed, 37 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/77ec9ec1/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/EtcdBackends.java
----------------------------------------------------------------------
diff --git a/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/EtcdBackends.java b/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/EtcdBackends.java
index b424625..a0c0703 100644
--- a/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/EtcdBackends.java
+++ b/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/EtcdBackends.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.apache.tamaya.etcd;
 
 import java.util.ArrayList;
@@ -6,7 +24,7 @@ import java.util.logging.Level;
 import java.util.logging.Logger;
 
 /**
- * Created by atsticks on 15.01.16.
+ * Singleton that reads and stores the current etcd setup, especially the possible URLs to be used.
  */
 public final class EtcdBackends {
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/77ec9ec1/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/internal/EtcdConfigChangeRequest.java
----------------------------------------------------------------------
diff --git a/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/internal/EtcdConfigChangeRequest.java b/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/internal/EtcdConfigChangeRequest.java
index c088ed7..27757ad 100644
--- a/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/internal/EtcdConfigChangeRequest.java
+++ b/modules/integration/etcd/src/main/java/org/apache/tamaya/etcd/internal/EtcdConfigChangeRequest.java
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.apache.tamaya.etcd.internal;
 
 import org.apache.tamaya.etcd.EtcdAccessor;