From ca33a9a5e5c052f02729dbfe686af3ce7db2b4fe Mon Sep 17 00:00:00 2001 From: fangyincheng <fangyincheng@sina.com> Date: Tue, 21 May 2019 17:18:27 +0800 Subject: [PATCH] Add:add license --- cluster/cluster.go | 14 +++++++++ cluster/cluster_impl/base_cluster_invoker.go | 14 +++++++++ cluster/cluster_impl/failover_cluster.go | 14 +++++++++ .../cluster_impl/failover_cluster_invoker.go | 14 +++++++++ cluster/cluster_impl/failover_cluster_test.go | 14 +++++++++ cluster/cluster_impl/mock_cluster.go | 14 +++++++++ .../cluster_impl/registry_aware_cluster.go | 14 +++++++++ .../registry_aware_cluster_invoker.go | 14 +++++++++ .../registry_aware_cluster_test.go | 14 +++++++++ cluster/directory.go | 14 +++++++++ cluster/directory/base_directory.go | 14 +++++++++ cluster/directory/static_directory.go | 14 +++++++++ cluster/directory/static_directory_test.go | 14 +++++++++ cluster/loadbalance.go | 14 +++++++++ cluster/loadbalance/random.go | 14 +++++++++ cluster/loadbalance/random_test.go | 14 +++++++++ cluster/loadbalance/util.go | 14 +++++++++ cluster/router.go | 14 +++++++++ common/constant/default.go | 14 +++++++++ common/constant/env.go | 14 +++++++++ common/constant/key.go | 14 +++++++++ common/extension/cluster.go | 14 +++++++++ common/extension/filter.go | 14 +++++++++ common/extension/loadbalance.go | 14 +++++++++ common/extension/protocol.go | 14 +++++++++ common/extension/registry.go | 14 +++++++++ common/node.go | 14 +++++++++ common/proxy/proxy.go | 14 +++++++++ common/proxy/proxy_test.go | 14 +++++++++ common/rpc_service.go | 14 +++++++++ common/rpc_service_test.go | 14 +++++++++ common/url.go | 14 +++++++++ common/url_test.go | 14 +++++++++ config/application_config.go | 14 +++++++++ config/config_loader.go | 14 +++++++++ config/config_loader_test.go | 14 +++++++++ config/mock_rpcservice.go | 14 +++++++++ config/reference_config.go | 14 +++++++++ config/reference_config_test.go | 14 +++++++++ config/registry_config.go | 14 +++++++++ config/service.go | 14 +++++++++ config/service_config.go | 14 +++++++++ config/service_config_test.go | 14 +++++++++ examples/dubbo/go-client/app/client.go | 14 +++++++++ examples/dubbo/go-client/app/user.go | 14 +++++++++ examples/dubbo/go-client/app/version.go | 14 +++++++++ examples/dubbo/go-server/app/server.go | 14 +++++++++ examples/dubbo/go-server/app/user.go | 14 +++++++++ examples/dubbo/go-server/app/version.go | 14 +++++++++ examples/jsonrpc/go-client/app/client.go | 14 +++++++++ examples/jsonrpc/go-client/app/user.go | 14 +++++++++ examples/jsonrpc/go-client/app/version.go | 14 +++++++++ examples/jsonrpc/go-server/app/server.go | 14 +++++++++ examples/jsonrpc/go-server/app/user.go | 14 +++++++++ examples/jsonrpc/go-server/app/version.go | 14 +++++++++ filter/filter.go | 14 +++++++++ filter/impl/echo_filter.go | 14 +++++++++ filter/impl/echo_filter_test.go | 14 +++++++++ protocol/dubbo/client.go | 14 +++++++++ protocol/dubbo/client_test.go | 14 +++++++++ protocol/dubbo/codec.go | 14 +++++++++ protocol/dubbo/codec_test.go | 14 +++++++++ protocol/dubbo/config.go | 14 +++++++++ protocol/dubbo/dubbo_exporter.go | 14 +++++++++ protocol/dubbo/dubbo_invoker.go | 14 +++++++++ protocol/dubbo/dubbo_invoker_test.go | 14 +++++++++ protocol/dubbo/dubbo_protocol.go | 14 +++++++++ protocol/dubbo/dubbo_protocol_test.go | 14 +++++++++ protocol/dubbo/listener.go | 14 +++++++++ protocol/dubbo/pool.go | 14 +++++++++ protocol/dubbo/readwriter.go | 14 +++++++++ protocol/dubbo/server.go | 14 +++++++++ protocol/invocation.go | 14 +++++++++ protocol/invocation/rpcinvocation.go | 14 +++++++++ protocol/invoker.go | 14 +++++++++ protocol/jsonrpc/http.go | 14 +++++++++ protocol/jsonrpc/http_test.go | 14 +++++++++ protocol/jsonrpc/json.go | 29 +++++++------------ protocol/jsonrpc/json_test.go | 14 +++++++++ protocol/jsonrpc/jsonrpc_exporter.go | 14 +++++++++ protocol/jsonrpc/jsonrpc_invoker.go | 14 +++++++++ protocol/jsonrpc/jsonrpc_invoker_test.go | 14 +++++++++ protocol/jsonrpc/jsonrpc_protocol.go | 14 +++++++++ protocol/jsonrpc/jsonrpc_protocol_test.go | 14 +++++++++ protocol/jsonrpc/server.go | 14 +++++++++ protocol/protocol.go | 14 +++++++++ .../protocolwrapper/mock_protocol_filter.go | 14 +++++++++ .../protocol_filter_wrapper.go | 14 +++++++++ .../protocol_filter_wrapper_test.go | 14 +++++++++ protocol/result.go | 14 +++++++++ registry/directory/directory.go | 14 +++++++++ registry/directory/directory_test.go | 14 +++++++++ registry/event.go | 14 +++++++++ registry/mock_registry.go | 14 +++++++++ registry/protocol/protocol.go | 14 +++++++++ registry/protocol/protocol_test.go | 14 +++++++++ registry/registry.go | 14 +++++++++ registry/zookeeper/listener.go | 14 +++++++++ registry/zookeeper/registry.go | 14 +++++++++ registry/zookeeper/registry_test.go | 14 +++++++++ registry/zookeeper/zk_client.go | 14 +++++++++ registry/zookeeper/zk_client_test.go | 14 +++++++++ version/version.go | 14 +++++++++ 103 files changed, 1438 insertions(+), 19 deletions(-) diff --git a/cluster/cluster.go b/cluster/cluster.go index c39b8a28b..a9a6c2e59 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster import "github.com/dubbo/go-for-apache-dubbo/protocol" diff --git a/cluster/cluster_impl/base_cluster_invoker.go b/cluster/cluster_impl/base_cluster_invoker.go index ed8ed5803..2bfc10d89 100644 --- a/cluster/cluster_impl/base_cluster_invoker.go +++ b/cluster/cluster_impl/base_cluster_invoker.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/failover_cluster.go b/cluster/cluster_impl/failover_cluster.go index d8bab9fd8..2f2bfdfe3 100644 --- a/cluster/cluster_impl/failover_cluster.go +++ b/cluster/cluster_impl/failover_cluster.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/failover_cluster_invoker.go b/cluster/cluster_impl/failover_cluster_invoker.go index 66101a1f0..91b48c595 100644 --- a/cluster/cluster_impl/failover_cluster_invoker.go +++ b/cluster/cluster_impl/failover_cluster_invoker.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/failover_cluster_test.go b/cluster/cluster_impl/failover_cluster_test.go index 26b3c0ae8..9e52e02d6 100644 --- a/cluster/cluster_impl/failover_cluster_test.go +++ b/cluster/cluster_impl/failover_cluster_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/mock_cluster.go b/cluster/cluster_impl/mock_cluster.go index 07963e522..f913eb682 100644 --- a/cluster/cluster_impl/mock_cluster.go +++ b/cluster/cluster_impl/mock_cluster.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/registry_aware_cluster.go b/cluster/cluster_impl/registry_aware_cluster.go index f61ba6da3..9f897bdf5 100644 --- a/cluster/cluster_impl/registry_aware_cluster.go +++ b/cluster/cluster_impl/registry_aware_cluster.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/registry_aware_cluster_invoker.go b/cluster/cluster_impl/registry_aware_cluster_invoker.go index 5e5e9f350..975ff8bda 100644 --- a/cluster/cluster_impl/registry_aware_cluster_invoker.go +++ b/cluster/cluster_impl/registry_aware_cluster_invoker.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/cluster_impl/registry_aware_cluster_test.go b/cluster/cluster_impl/registry_aware_cluster_test.go index 7e4b07cb0..51734116a 100644 --- a/cluster/cluster_impl/registry_aware_cluster_test.go +++ b/cluster/cluster_impl/registry_aware_cluster_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster_impl import ( diff --git a/cluster/directory.go b/cluster/directory.go index 9146c593e..9a055d6f5 100644 --- a/cluster/directory.go +++ b/cluster/directory.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster import ( diff --git a/cluster/directory/base_directory.go b/cluster/directory/base_directory.go index 93ff9ebc8..ef74c3511 100644 --- a/cluster/directory/base_directory.go +++ b/cluster/directory/base_directory.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 directory import ( diff --git a/cluster/directory/static_directory.go b/cluster/directory/static_directory.go index 1d092b05d..57093c4ae 100644 --- a/cluster/directory/static_directory.go +++ b/cluster/directory/static_directory.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 directory import ( diff --git a/cluster/directory/static_directory_test.go b/cluster/directory/static_directory_test.go index a71b88315..2f99aa8c0 100644 --- a/cluster/directory/static_directory_test.go +++ b/cluster/directory/static_directory_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 directory import ( diff --git a/cluster/loadbalance.go b/cluster/loadbalance.go index 8e1ff5d14..897c7952f 100644 --- a/cluster/loadbalance.go +++ b/cluster/loadbalance.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster import ( diff --git a/cluster/loadbalance/random.go b/cluster/loadbalance/random.go index aad09f2fa..992a8dfc3 100644 --- a/cluster/loadbalance/random.go +++ b/cluster/loadbalance/random.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 loadbalance import ( diff --git a/cluster/loadbalance/random_test.go b/cluster/loadbalance/random_test.go index 4c20010f8..fd1a2d2e2 100644 --- a/cluster/loadbalance/random_test.go +++ b/cluster/loadbalance/random_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 loadbalance import ( diff --git a/cluster/loadbalance/util.go b/cluster/loadbalance/util.go index c2bff75b1..fdbeb14dd 100644 --- a/cluster/loadbalance/util.go +++ b/cluster/loadbalance/util.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 loadbalance import ( diff --git a/cluster/router.go b/cluster/router.go index 0d4b98d79..a80efaa0b 100644 --- a/cluster/router.go +++ b/cluster/router.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 cluster import ( diff --git a/common/constant/default.go b/common/constant/default.go index 335f84799..271b7738e 100644 --- a/common/constant/default.go +++ b/common/constant/default.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, hxmhlt +// +// 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 constant const ( diff --git a/common/constant/env.go b/common/constant/env.go index 4f03e8308..23fd9880a 100644 --- a/common/constant/env.go +++ b/common/constant/env.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 constant const ( diff --git a/common/constant/key.go b/common/constant/key.go index c0a009bd4..5352c00f6 100644 --- a/common/constant/key.go +++ b/common/constant/key.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt, Yincheg Fang +// +// 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 constant const ( diff --git a/common/extension/cluster.go b/common/extension/cluster.go index 553209eba..1e0253048 100644 --- a/common/extension/cluster.go +++ b/common/extension/cluster.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 extension import ( diff --git a/common/extension/filter.go b/common/extension/filter.go index 2586a28c0..cc39c5fe7 100644 --- a/common/extension/filter.go +++ b/common/extension/filter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 extension import ( diff --git a/common/extension/loadbalance.go b/common/extension/loadbalance.go index 97d22cffb..bc1139bdc 100644 --- a/common/extension/loadbalance.go +++ b/common/extension/loadbalance.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 extension import "github.com/dubbo/go-for-apache-dubbo/cluster" diff --git a/common/extension/protocol.go b/common/extension/protocol.go index 2ac43676b..791db0415 100644 --- a/common/extension/protocol.go +++ b/common/extension/protocol.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 extension import ( diff --git a/common/extension/registry.go b/common/extension/registry.go index 9fc97912a..bfbefa5b8 100644 --- a/common/extension/registry.go +++ b/common/extension/registry.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 extension import ( diff --git a/common/node.go b/common/node.go index c788a7366..fb409e5ce 100644 --- a/common/node.go +++ b/common/node.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 common type Node interface { diff --git a/common/proxy/proxy.go b/common/proxy/proxy.go index 2304b1ebc..044f6018a 100644 --- a/common/proxy/proxy.go +++ b/common/proxy/proxy.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 proxy import ( diff --git a/common/proxy/proxy_test.go b/common/proxy/proxy_test.go index 617502ee6..252626e78 100644 --- a/common/proxy/proxy_test.go +++ b/common/proxy/proxy_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 proxy import ( diff --git a/common/rpc_service.go b/common/rpc_service.go index e94bb7b89..02c83ee95 100644 --- a/common/rpc_service.go +++ b/common/rpc_service.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 common import ( diff --git a/common/rpc_service_test.go b/common/rpc_service_test.go index 7b38236f2..5d5c7283b 100644 --- a/common/rpc_service_test.go +++ b/common/rpc_service_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 common import ( diff --git a/common/url.go b/common/url.go index e67a59e51..5e33a8d6b 100644 --- a/common/url.go +++ b/common/url.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 common import ( diff --git a/common/url_test.go b/common/url_test.go index 336ec9ee7..cfac4703e 100644 --- a/common/url_test.go +++ b/common/url_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 common import ( diff --git a/config/application_config.go b/config/application_config.go index 81d255a34..f12fdea9f 100644 --- a/config/application_config.go +++ b/config/application_config.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config type ApplicationConfig struct { diff --git a/config/config_loader.go b/config/config_loader.go index 6ff55a576..b4e854c58 100644 --- a/config/config_loader.go +++ b/config/config_loader.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 config import ( diff --git a/config/config_loader_test.go b/config/config_loader_test.go index 24c24ae26..bf7aa86ab 100644 --- a/config/config_loader_test.go +++ b/config/config_loader_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 config import ( diff --git a/config/mock_rpcservice.go b/config/mock_rpcservice.go index 14641de4e..87059ac00 100644 --- a/config/mock_rpcservice.go +++ b/config/mock_rpcservice.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config import "context" diff --git a/config/reference_config.go b/config/reference_config.go index 7d6a55b70..ef161ee87 100644 --- a/config/reference_config.go +++ b/config/reference_config.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config import ( diff --git a/config/reference_config_test.go b/config/reference_config_test.go index a2ba14a66..ce613cda2 100644 --- a/config/reference_config_test.go +++ b/config/reference_config_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config import ( diff --git a/config/registry_config.go b/config/registry_config.go index 9e646d98b..844c4b3f8 100644 --- a/config/registry_config.go +++ b/config/registry_config.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config import ( diff --git a/config/service.go b/config/service.go index e7b2070a2..ff87e296c 100644 --- a/config/service.go +++ b/config/service.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 config import ( diff --git a/config/service_config.go b/config/service_config.go index 70dcc77f9..259a8d6b3 100644 --- a/config/service_config.go +++ b/config/service_config.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config import ( diff --git a/config/service_config_test.go b/config/service_config_test.go index f6874b15f..aee735dd7 100644 --- a/config/service_config_test.go +++ b/config/service_config_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 config import ( diff --git a/examples/dubbo/go-client/app/client.go b/examples/dubbo/go-client/app/client.go index 35f25ae9b..265245117 100644 --- a/examples/dubbo/go-client/app/client.go +++ b/examples/dubbo/go-client/app/client.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/dubbo/go-client/app/user.go b/examples/dubbo/go-client/app/user.go index be5dde282..bebf93de6 100644 --- a/examples/dubbo/go-client/app/user.go +++ b/examples/dubbo/go-client/app/user.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/dubbo/go-client/app/version.go b/examples/dubbo/go-client/app/version.go index 33bb9cd02..0e6fb9d13 100644 --- a/examples/dubbo/go-client/app/version.go +++ b/examples/dubbo/go-client/app/version.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main var ( diff --git a/examples/dubbo/go-server/app/server.go b/examples/dubbo/go-server/app/server.go index 4b12e51bd..287068f10 100644 --- a/examples/dubbo/go-server/app/server.go +++ b/examples/dubbo/go-server/app/server.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/dubbo/go-server/app/user.go b/examples/dubbo/go-server/app/user.go index cf9494a43..30bb4bfa3 100644 --- a/examples/dubbo/go-server/app/user.go +++ b/examples/dubbo/go-server/app/user.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/dubbo/go-server/app/version.go b/examples/dubbo/go-server/app/version.go index c7552b26e..1ecda45af 100644 --- a/examples/dubbo/go-server/app/version.go +++ b/examples/dubbo/go-server/app/version.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main var ( diff --git a/examples/jsonrpc/go-client/app/client.go b/examples/jsonrpc/go-client/app/client.go index c87fb5e79..781b55a84 100644 --- a/examples/jsonrpc/go-client/app/client.go +++ b/examples/jsonrpc/go-client/app/client.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/jsonrpc/go-client/app/user.go b/examples/jsonrpc/go-client/app/user.go index a453a06d2..9d18dad7f 100644 --- a/examples/jsonrpc/go-client/app/user.go +++ b/examples/jsonrpc/go-client/app/user.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/jsonrpc/go-client/app/version.go b/examples/jsonrpc/go-client/app/version.go index 33bb9cd02..0e6fb9d13 100644 --- a/examples/jsonrpc/go-client/app/version.go +++ b/examples/jsonrpc/go-client/app/version.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main var ( diff --git a/examples/jsonrpc/go-server/app/server.go b/examples/jsonrpc/go-server/app/server.go index 3d2c45ed9..9eb2da198 100644 --- a/examples/jsonrpc/go-server/app/server.go +++ b/examples/jsonrpc/go-server/app/server.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/jsonrpc/go-server/app/user.go b/examples/jsonrpc/go-server/app/user.go index ee3a2018b..7c9bfcafe 100644 --- a/examples/jsonrpc/go-server/app/user.go +++ b/examples/jsonrpc/go-server/app/user.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main import ( diff --git a/examples/jsonrpc/go-server/app/version.go b/examples/jsonrpc/go-server/app/version.go index c7552b26e..1ecda45af 100644 --- a/examples/jsonrpc/go-server/app/version.go +++ b/examples/jsonrpc/go-server/app/version.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 main var ( diff --git a/filter/filter.go b/filter/filter.go index 6108040bb..384dbf1a5 100644 --- a/filter/filter.go +++ b/filter/filter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 filter import ( diff --git a/filter/impl/echo_filter.go b/filter/impl/echo_filter.go index 82d487013..283d61eb9 100644 --- a/filter/impl/echo_filter.go +++ b/filter/impl/echo_filter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 impl import ( diff --git a/filter/impl/echo_filter_test.go b/filter/impl/echo_filter_test.go index 335242b99..f8774edb8 100644 --- a/filter/impl/echo_filter_test.go +++ b/filter/impl/echo_filter_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 impl import ( diff --git a/protocol/dubbo/client.go b/protocol/dubbo/client.go index 7477a965a..55e1e3cc2 100644 --- a/protocol/dubbo/client.go +++ b/protocol/dubbo/client.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/dubbo/client_test.go b/protocol/dubbo/client_test.go index a22135ba9..ec49f8cea 100644 --- a/protocol/dubbo/client_test.go +++ b/protocol/dubbo/client_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/codec.go b/protocol/dubbo/codec.go index ab7e95eb7..b669082ea 100644 --- a/protocol/dubbo/codec.go +++ b/protocol/dubbo/codec.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/dubbo/codec_test.go b/protocol/dubbo/codec_test.go index f044d9e82..8c3e5b18d 100644 --- a/protocol/dubbo/codec_test.go +++ b/protocol/dubbo/codec_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/config.go b/protocol/dubbo/config.go index b0859681b..97f15f75d 100644 --- a/protocol/dubbo/config.go +++ b/protocol/dubbo/config.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/dubbo/dubbo_exporter.go b/protocol/dubbo/dubbo_exporter.go index 3e73211cb..79f7f0c7a 100644 --- a/protocol/dubbo/dubbo_exporter.go +++ b/protocol/dubbo/dubbo_exporter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/dubbo_invoker.go b/protocol/dubbo/dubbo_invoker.go index 72da3294b..92b67ffd8 100644 --- a/protocol/dubbo/dubbo_invoker.go +++ b/protocol/dubbo/dubbo_invoker.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/dubbo_invoker_test.go b/protocol/dubbo/dubbo_invoker_test.go index 505c0b348..3931279ef 100644 --- a/protocol/dubbo/dubbo_invoker_test.go +++ b/protocol/dubbo/dubbo_invoker_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/dubbo_protocol.go b/protocol/dubbo/dubbo_protocol.go index b122383d8..48b77b5b3 100644 --- a/protocol/dubbo/dubbo_protocol.go +++ b/protocol/dubbo/dubbo_protocol.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/dubbo_protocol_test.go b/protocol/dubbo/dubbo_protocol_test.go index 99a189f32..9c8966792 100644 --- a/protocol/dubbo/dubbo_protocol_test.go +++ b/protocol/dubbo/dubbo_protocol_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 dubbo import ( diff --git a/protocol/dubbo/listener.go b/protocol/dubbo/listener.go index 21b19c074..550626629 100644 --- a/protocol/dubbo/listener.go +++ b/protocol/dubbo/listener.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/dubbo/pool.go b/protocol/dubbo/pool.go index 651733ba3..7f2acdb09 100644 --- a/protocol/dubbo/pool.go +++ b/protocol/dubbo/pool.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/dubbo/readwriter.go b/protocol/dubbo/readwriter.go index ad1a93ef1..b4ad3f8e8 100644 --- a/protocol/dubbo/readwriter.go +++ b/protocol/dubbo/readwriter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/dubbo/server.go b/protocol/dubbo/server.go index ad831acbe..db60b6f73 100644 --- a/protocol/dubbo/server.go +++ b/protocol/dubbo/server.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 dubbo import ( diff --git a/protocol/invocation.go b/protocol/invocation.go index b5725be5c..0297a556c 100644 --- a/protocol/invocation.go +++ b/protocol/invocation.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 protocol import ( diff --git a/protocol/invocation/rpcinvocation.go b/protocol/invocation/rpcinvocation.go index fa4a514d1..87ab0c678 100644 --- a/protocol/invocation/rpcinvocation.go +++ b/protocol/invocation/rpcinvocation.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 invocation import ( diff --git a/protocol/invoker.go b/protocol/invoker.go index 46a1782fe..98ce99c06 100644 --- a/protocol/invoker.go +++ b/protocol/invoker.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 protocol import ( diff --git a/protocol/jsonrpc/http.go b/protocol/jsonrpc/http.go index b815e8c05..d19f96dce 100644 --- a/protocol/jsonrpc/http.go +++ b/protocol/jsonrpc/http.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Alex Stocks +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/http_test.go b/protocol/jsonrpc/http_test.go index 19025fa0d..468eeb09a 100644 --- a/protocol/jsonrpc/http_test.go +++ b/protocol/jsonrpc/http_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/json.go b/protocol/jsonrpc/json.go index 8ff48882f..b0af78879 100644 --- a/protocol/jsonrpc/json.go +++ b/protocol/jsonrpc/json.go @@ -1,25 +1,16 @@ -// Copyright (c) 2016 ~ 2018, Alex Stocks. -// Copyright (c) 2015 Alex Efros. +// Copyright 2016-2019 Alex Stocks // -// The MIT License (MIT) +// 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 // -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: +// http://www.apache.org/licenses/LICENSE-2.0 // -// The above copyright notice and this permission notice shall be included in all -// copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -// SOFTWARE. +// 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 jsonrpc diff --git a/protocol/jsonrpc/json_test.go b/protocol/jsonrpc/json_test.go index 4b83f1811..c821cc25f 100644 --- a/protocol/jsonrpc/json_test.go +++ b/protocol/jsonrpc/json_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/jsonrpc_exporter.go b/protocol/jsonrpc/jsonrpc_exporter.go index eedb4044d..c470d8ba6 100644 --- a/protocol/jsonrpc/jsonrpc_exporter.go +++ b/protocol/jsonrpc/jsonrpc_exporter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/jsonrpc_invoker.go b/protocol/jsonrpc/jsonrpc_invoker.go index e427c554f..18966db2a 100644 --- a/protocol/jsonrpc/jsonrpc_invoker.go +++ b/protocol/jsonrpc/jsonrpc_invoker.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/jsonrpc_invoker_test.go b/protocol/jsonrpc/jsonrpc_invoker_test.go index 5e1bd3538..3bc4a29af 100644 --- a/protocol/jsonrpc/jsonrpc_invoker_test.go +++ b/protocol/jsonrpc/jsonrpc_invoker_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/jsonrpc_protocol.go b/protocol/jsonrpc/jsonrpc_protocol.go index b8ae6be59..465e4a1e5 100644 --- a/protocol/jsonrpc/jsonrpc_protocol.go +++ b/protocol/jsonrpc/jsonrpc_protocol.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/jsonrpc_protocol_test.go b/protocol/jsonrpc/jsonrpc_protocol_test.go index f67a5d8ed..09e43400c 100644 --- a/protocol/jsonrpc/jsonrpc_protocol_test.go +++ b/protocol/jsonrpc/jsonrpc_protocol_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 jsonrpc import ( diff --git a/protocol/jsonrpc/server.go b/protocol/jsonrpc/server.go index 0d625b347..78e96a411 100644 --- a/protocol/jsonrpc/server.go +++ b/protocol/jsonrpc/server.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang, Alex Stocks +// +// 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 jsonrpc import ( diff --git a/protocol/protocol.go b/protocol/protocol.go index 379a83b53..90a9970a8 100644 --- a/protocol/protocol.go +++ b/protocol/protocol.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 protocol import ( diff --git a/protocol/protocolwrapper/mock_protocol_filter.go b/protocol/protocolwrapper/mock_protocol_filter.go index 7776fa9dd..902ccefaa 100644 --- a/protocol/protocolwrapper/mock_protocol_filter.go +++ b/protocol/protocolwrapper/mock_protocol_filter.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 protocolwrapper import ( diff --git a/protocol/protocolwrapper/protocol_filter_wrapper.go b/protocol/protocolwrapper/protocol_filter_wrapper.go index 83097d9ea..61d515ed3 100644 --- a/protocol/protocolwrapper/protocol_filter_wrapper.go +++ b/protocol/protocolwrapper/protocol_filter_wrapper.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 protocolwrapper import ( diff --git a/protocol/protocolwrapper/protocol_filter_wrapper_test.go b/protocol/protocolwrapper/protocol_filter_wrapper_test.go index a3e91add8..f3602cc32 100644 --- a/protocol/protocolwrapper/protocol_filter_wrapper_test.go +++ b/protocol/protocolwrapper/protocol_filter_wrapper_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 protocolwrapper import ( diff --git a/protocol/result.go b/protocol/result.go index ba75e6178..adcce8a5e 100644 --- a/protocol/result.go +++ b/protocol/result.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Yincheng Fang +// +// 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 protocol type Result interface { diff --git a/registry/directory/directory.go b/registry/directory/directory.go index 2c8b49cc4..363ed9a2c 100644 --- a/registry/directory/directory.go +++ b/registry/directory/directory.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 directory import ( diff --git a/registry/directory/directory_test.go b/registry/directory/directory_test.go index 1dfc16271..521bd84f0 100644 --- a/registry/directory/directory_test.go +++ b/registry/directory/directory_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 directory import ( diff --git a/registry/event.go b/registry/event.go index 9ee1e9715..51a21ac37 100644 --- a/registry/event.go +++ b/registry/event.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 registry import ( diff --git a/registry/mock_registry.go b/registry/mock_registry.go index c84fa1a8c..16a0942b7 100644 --- a/registry/mock_registry.go +++ b/registry/mock_registry.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 registry import ( diff --git a/registry/protocol/protocol.go b/registry/protocol/protocol.go index 9d955f0c7..7c7de267f 100644 --- a/registry/protocol/protocol.go +++ b/registry/protocol/protocol.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 protocol import ( diff --git a/registry/protocol/protocol_test.go b/registry/protocol/protocol_test.go index 15b8e772a..f1bb2fc5a 100644 --- a/registry/protocol/protocol_test.go +++ b/registry/protocol/protocol_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 protocol import ( diff --git a/registry/registry.go b/registry/registry.go index 8bc384c21..28ca1a1c1 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 registry import ( diff --git a/registry/zookeeper/listener.go b/registry/zookeeper/listener.go index 8a27d0990..2d0f91f3e 100644 --- a/registry/zookeeper/listener.go +++ b/registry/zookeeper/listener.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 zookeeper import ( diff --git a/registry/zookeeper/registry.go b/registry/zookeeper/registry.go index 15276daa3..361fc001d 100644 --- a/registry/zookeeper/registry.go +++ b/registry/zookeeper/registry.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 zookeeper import ( diff --git a/registry/zookeeper/registry_test.go b/registry/zookeeper/registry_test.go index 2853e670c..3d230bb0a 100644 --- a/registry/zookeeper/registry_test.go +++ b/registry/zookeeper/registry_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 zookeeper import ( diff --git a/registry/zookeeper/zk_client.go b/registry/zookeeper/zk_client.go index 8bbfd3b80..9c9cdb0d5 100644 --- a/registry/zookeeper/zk_client.go +++ b/registry/zookeeper/zk_client.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 zookeeper import ( diff --git a/registry/zookeeper/zk_client_test.go b/registry/zookeeper/zk_client_test.go index bd5b715a1..808b6fcff 100644 --- a/registry/zookeeper/zk_client_test.go +++ b/registry/zookeeper/zk_client_test.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 hxmhlt +// +// 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 zookeeper import ( diff --git a/version/version.go b/version/version.go index d5b7850cb..ff30d0319 100644 --- a/version/version.go +++ b/version/version.go @@ -1,3 +1,17 @@ +// Copyright 2016-2019 Alex Stocks +// +// 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 version const ( -- GitLab