aboutsummaryrefslogtreecommitdiff
path: root/grpclb
diff options
context:
space:
mode:
authorCarl Mastrangelo <notcarl@google.com>2018-05-03 14:55:21 -0700
committerGitHub <noreply@github.com>2018-05-03 14:55:21 -0700
commit60a0b0c471d720b0546ee3a5b4fa4283635dfbcf (patch)
tree1409d62af1373bd59e644eb8e0eee825cb45c4a3 /grpclb
parent894c8158323c8fd30e0e163c19f3a39e0244c9be (diff)
downloadgrpc-grpc-java-60a0b0c471d720b0546ee3a5b4fa4283635dfbcf.tar.gz
all: normalize copyright header
Diffstat (limited to 'grpclb')
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/BackendAddressGroup.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/CachedSubchannelPool.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/DropType.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/GrpclbClientLoadRecorder.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/GrpclbConstants.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancer.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancerFactory.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/GrpclbState.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/LbAddressGroup.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/SubchannelPool.java2
-rw-r--r--grpclb/src/main/java/io/grpc/grpclb/TimeProvider.java2
-rw-r--r--grpclb/src/main/proto/grpc/lb/v1/load_balancer.proto15
-rw-r--r--grpclb/src/test/java/io/grpc/grpclb/CachedSubchannelPoolTest.java2
-rw-r--r--grpclb/src/test/java/io/grpc/grpclb/FakeSocketAddress.java2
-rw-r--r--grpclb/src/test/java/io/grpc/grpclb/GrpclbLoadBalancerTest.java2
15 files changed, 28 insertions, 15 deletions
diff --git a/grpclb/src/main/java/io/grpc/grpclb/BackendAddressGroup.java b/grpclb/src/main/java/io/grpc/grpclb/BackendAddressGroup.java
index 8e134b0ed..1e38d611e 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/BackendAddressGroup.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/BackendAddressGroup.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/CachedSubchannelPool.java b/grpclb/src/main/java/io/grpc/grpclb/CachedSubchannelPool.java
index 55cbef198..4091ce221 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/CachedSubchannelPool.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/CachedSubchannelPool.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018, gRPC Authors All rights reserved.
+ * Copyright 2018 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/DropType.java b/grpclb/src/main/java/io/grpc/grpclb/DropType.java
index efaaf08d6..704b79ee0 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/DropType.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/DropType.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/GrpclbClientLoadRecorder.java b/grpclb/src/main/java/io/grpc/grpclb/GrpclbClientLoadRecorder.java
index 8a165cff5..a6eadc090 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/GrpclbClientLoadRecorder.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/GrpclbClientLoadRecorder.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/GrpclbConstants.java b/grpclb/src/main/java/io/grpc/grpclb/GrpclbConstants.java
index 4e7207466..147e09d78 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/GrpclbConstants.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/GrpclbConstants.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancer.java b/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancer.java
index 5a5a89161..42bb806b8 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancer.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancer.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancerFactory.java b/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancerFactory.java
index a55cb2970..7058ef3e4 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancerFactory.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/GrpclbLoadBalancerFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/GrpclbState.java b/grpclb/src/main/java/io/grpc/grpclb/GrpclbState.java
index 9e75dd2e4..e2e175e5b 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/GrpclbState.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/GrpclbState.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/LbAddressGroup.java b/grpclb/src/main/java/io/grpc/grpclb/LbAddressGroup.java
index 059fd5f3b..cca096f75 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/LbAddressGroup.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/LbAddressGroup.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/SubchannelPool.java b/grpclb/src/main/java/io/grpc/grpclb/SubchannelPool.java
index 88498e890..05d750bc2 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/SubchannelPool.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/SubchannelPool.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018, gRPC Authors All rights reserved.
+ * Copyright 2018 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/java/io/grpc/grpclb/TimeProvider.java b/grpclb/src/main/java/io/grpc/grpclb/TimeProvider.java
index d37cdd9d0..b22d74359 100644
--- a/grpclb/src/main/java/io/grpc/grpclb/TimeProvider.java
+++ b/grpclb/src/main/java/io/grpc/grpclb/TimeProvider.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/main/proto/grpc/lb/v1/load_balancer.proto b/grpclb/src/main/proto/grpc/lb/v1/load_balancer.proto
index 348564776..b250cee6b 100644
--- a/grpclb/src/main/proto/grpc/lb/v1/load_balancer.proto
+++ b/grpclb/src/main/proto/grpc/lb/v1/load_balancer.proto
@@ -1,5 +1,18 @@
-// The GRPCLB LoadBalancing protocol
+// Copyright 2015 The gRPC Authors
+//
+// 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.
+// The GRPCLB LoadBalancing protocol
syntax = "proto3";
import "google/protobuf/duration.proto";
diff --git a/grpclb/src/test/java/io/grpc/grpclb/CachedSubchannelPoolTest.java b/grpclb/src/test/java/io/grpc/grpclb/CachedSubchannelPoolTest.java
index 7cdb7f781..2b52b0995 100644
--- a/grpclb/src/test/java/io/grpc/grpclb/CachedSubchannelPoolTest.java
+++ b/grpclb/src/test/java/io/grpc/grpclb/CachedSubchannelPoolTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018, gRPC Authors All rights reserved.
+ * Copyright 2018 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/test/java/io/grpc/grpclb/FakeSocketAddress.java b/grpclb/src/test/java/io/grpc/grpclb/FakeSocketAddress.java
index 4d6848a48..b74ea74fb 100644
--- a/grpclb/src/test/java/io/grpc/grpclb/FakeSocketAddress.java
+++ b/grpclb/src/test/java/io/grpc/grpclb/FakeSocketAddress.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2018, gRPC Authors All rights reserved.
+ * Copyright 2018 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/grpclb/src/test/java/io/grpc/grpclb/GrpclbLoadBalancerTest.java b/grpclb/src/test/java/io/grpc/grpclb/GrpclbLoadBalancerTest.java
index 7379d66bf..69c934537 100644
--- a/grpclb/src/test/java/io/grpc/grpclb/GrpclbLoadBalancerTest.java
+++ b/grpclb/src/test/java/io/grpc/grpclb/GrpclbLoadBalancerTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.