Modify license header
authorHuabingZhao <zhao.huabing@zte.com.cn>
Mon, 26 Sep 2016 12:31:37 +0000 (20:31 +0800)
committerHuabingZhao <zhao.huabing@zte.com.cn>
Mon, 26 Sep 2016 12:31:45 +0000 (20:31 +0800)
Issue-Id: OCS-81
Change-Id: I06e3f2c555be2b58a02412713f99b6e03c849cec
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
136 files changed:
msb-core/apiroute/apiroute-service/pom.xml
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/ApiRouteApp.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/ApiRouteAppConfig.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/ConsulClientApp.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/ApiRouteInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/ConsulInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/CustomDateSerializer.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/CustomRouteInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/DiscoverInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/IuiRouteInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/MetricsInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/MicroServiceFullInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/MicroServiceInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/Node.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/NodeInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/RouteServer.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/Service.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/ServiceAccessInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/exception/ExtendedInternalServerErrorException.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/exception/ExtendedNotFoundException.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/api/exception/ExtendedNotSupportedException.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/health/ApiRouteHealthCheck.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/resources/ApiRouteResource.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/resources/CustomRouteResource.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/resources/IuiRouteResource.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/resources/MetricsResource.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/resources/MicroServiceResource.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/resources/ServiceAccessResource.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/ApiRouteServiceWrapper.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/CustomRouteServiceWrapper.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/IuiRouteServiceWrapper.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/MetricsServiceWrapper.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/MicroServiceWrapper.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/ServiceAccessWrapper.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/CatalogClient.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/Consul.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/ConsulException.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/HealthClient.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/async/ConsulResponseCallback.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/CatalogCache.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/ConsulCache.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/ConsulCache4Map.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/HealthCache.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/ServiceCache.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/ConsulResponse.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/catalog/CatalogNode.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/catalog/CatalogService.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/catalog/ImmutableCatalogNode.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/catalog/ImmutableCatalogService.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/catalog/ServiceInfo.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/health/ImmutableNode.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/health/ImmutableService.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/health/Node.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/health/Service.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/model/health/ServiceHealth.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/CatalogOptions.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/ConsistencyMode.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/ImmutableCatalogOptions.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/ImmutableQueryOptions.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/Options.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/ParamAdder.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/option/QueryOptions.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/Base64EncodingDeserializer.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/ClientUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/Jackson.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/ObjectMapperContextResolver.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/SecondsDeserializer.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/SecondsSerializer.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/util/UnsignedLongDeserializer.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/serviceListener/IMicroServiceChangeListener.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/serviceListener/MicroServiceChangeListener.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/FileUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/JacksonJsonUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/JedisUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/MetricsUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/MicroServiceDB.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/MicroServiceUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/RegExpTestUtil.java
msb-core/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/util/RouteUtil.java
msb-core/apiroute/apiroute-service/src/main/resources/api-doc/WEB-INF/web.xml
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/ApiRouteServiceWrapperTest.java
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/CustomRouteServiceWrapperTest.java
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/IuiRouteServiceWrapperTest.java
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/MicroServiceWrapperTest.java
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/util/JacksonJsonUtilTest.java
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/util/RegExpTestUtilTest.java
msb-core/apiroute/apiroute-service/src/test/java/org/openo/msb/wrapper/util/RouteUtilTest.java
msb-core/apiroute/apiroute-standalone/pom.xml
msb-core/apiroute/apiroute-standalone/src/assembly/resource/apiroute/apirouteService.xml
msb-core/apiroute/apiroute-standalone/src/assembly/resource/apiroute/find_kill_process.bat
msb-core/apiroute/apiroute-standalone/src/assembly/resource/apiroute/run.bat
msb-core/apiroute/apiroute-standalone/src/assembly/resource/apiroute/run.sh
msb-core/apiroute/apiroute-standalone/src/assembly/resource/apiroute/stop.bat
msb-core/apiroute/apiroute-standalone/src/assembly/resource/apiroute/stop.sh
msb-core/apiroute/pom.xml
msb-core/distributions/pom.xml
msb-core/distributions/standalone/pom.xml
msb-core/distributions/standalone/src/assembly/resource/servicesInstall.bat
msb-core/distributions/standalone/src/assembly/resource/servicesRestart.bat
msb-core/distributions/standalone/src/assembly/resource/servicesStatus.bat
msb-core/distributions/standalone/src/assembly/resource/servicesUninstall.bat
msb-core/distributions/standalone/src/assembly/resource/shutdown.bat
msb-core/distributions/standalone/src/assembly/resource/shutdown.sh
msb-core/distributions/standalone/src/assembly/resource/startup.bat
msb-core/distributions/standalone/src/assembly/resource/startup.sh
msb-core/eag-openresty-ext/pom.xml
msb-core/eag-openresty-ext/src/assembly/resources/openresty/nginx/luaext/msbconf.lua
msb-core/openresty-ext/pom.xml
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/customrouter.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/execute_auth.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/msbconf.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/openoadminrouter.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/openoapijsonrouter.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/openoapirouter.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/openouirouter.lua
msb-core/openresty-ext/src/assembly/resources/openresty/nginx/luaext/setnocacheflag.lua
msb-core/openresty-ext/src/assembly/resources/openresty/reload.sh
msb-core/openresty-ext/src/assembly/resources/openresty/run.bat
msb-core/openresty-ext/src/assembly/resources/openresty/run.sh
msb-core/openresty-ext/src/assembly/resources/openresty/stop.bat
msb-core/openresty-ext/src/assembly/resources/openresty/stop.sh
msb-core/openresty/pom.xml
msb-core/pom.xml
msb-core/redis-ext/pom.xml
msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.bat
msb-core/redis-ext/src/assembly/resources/redis/BGREWRITEAOF.sh
msb-core/redis-ext/src/assembly/resources/redis/redisService.xml
msb-core/redis-ext/src/assembly/resources/redis/run.bat
msb-core/redis-ext/src/assembly/resources/redis/run.sh
msb-core/redis-ext/src/assembly/resources/redis/stop.bat
msb-core/redis-ext/src/assembly/resources/redis/stop.sh
msb-core/redis/pom.xml
msb-parent/msbparent-lite/pom.xml
msb-parent/msbparent/pom.xml
msb-parent/pom.xml
pom.xml

index 8eb17fb..a34b5f0 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 94b29ac..e5a6394 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 4029c04..8338ceb 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 4986e54..4d83a6d 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index ef22994..83e1a76 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 68a22cf..4550b61 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 89f51af..e7d46d4 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 208f3ff..05145e2 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index dc6ec40..5e71b29 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9e40783..043bc02 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 339bb31..981dfe6 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 14cea47..3817395 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 02609f9..725df2e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 0879c61..6273ea1 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e3a30e7..c1a5d68 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 675bc69..0a38c7f 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 8969e1d..6db6a11 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index bb375ac..58f907a 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index a377c4c..f30cde5 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e3e74ea..92956d1 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e0c7805..3d8c90e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index cd7ecda..e4f0135 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index cc1e4de..a71b978 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 48545fe..01a4291 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 7635579..057d15d 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 7377c86..def36e2 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 45328f0..dd560ff 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 814f979..65da72b 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9680a1a..e0ecd01 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f5a642b..52e30c0 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c3419a0..1e34878 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index d0d9ed9..edab97b 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 08e3e26..bc803f4 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 69be552..23a02a1 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index cd881b0..67115a8 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 67c9ef3..46cfc00 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9fd62a6..a17d68f 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 96d62e6..9fde7ee 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c74f4a2..d823e98 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e928dcf..346ba1d 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 1e0071c..500579a 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index ec0e54a..349cbdd 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 54caab6..cc4d7cb 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 78c4b92..5d16e24 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 3ee15f1..b19f37c 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 1a33a4f..5ffc97b 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index ec6ecfe..9d62f02 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index de872df..18830d5 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 738b094..c16b94f 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 285b997..dcf67a2 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 56d2cb1..ed0340e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f350510..ec8f2d3 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 0933c5b..9f603c5 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 0af11f8..6ac3d4b 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c543203..4693256 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 1408cca..daba73c 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 7320e8a..ea47c65 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 3e530f1..89048d5 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 23fc5e7..c39b578 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 2593c48..1f04c09 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 188f04e..dc9a9fa 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 0d7abe8..688728e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 2502c2f..4770b6d 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 03264c0..c45f0dd 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index d573c50..f49ba12 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 4a5cd1b..9887bfe 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 2c34e37..8bb04a6 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 1d1f9e3..8c0ba85 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f3aeb09..7bdee6f 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 30b179b..e37bb06 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 45c085c..412b4e6 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index e739ceb..baf3a1a 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 9f6f236..5157187 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 97309e8..b675ab1 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 6a579b1..df21f3e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 98e051f..cec948c 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 044ce9c..3da82ed 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index d7a8116..90c8cba 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index f14908a..e505e16 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 38811b2..057b722 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 5b0867c..6815f16 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 09935a0..38a63c7 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 33dc01c..343b26e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 3832bd0..20be0b4 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index 255cc77..1d36fc6 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c744026..e3c4d3e 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index af5c28b..f665bd3 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+ * Copyright 2016 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
index c4e1b76..0d9c092 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index ab92b2f..617c66e 100644 (file)
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 34e5823..6700cfe 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 83a76cb..a67407a 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 7201c05..4094bb9 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index e37210a..2782930 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 9895070..d9b33e9 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index 63e79a7..3b7fdda 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index ace200a..316d763 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index e6f6872..97f6a7c 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 2c80731..d04d064 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 71f702f..c66a6e3 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index d143759..3415747 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 0f1a89e..5a5bc0b 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index c2cce3b..0ebe78e 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 0c19f3f..b7c570b 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index a85ace7..30e23de 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index e0fee7d..aa4117d 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index 16e76e7..228f3cb 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 4e820f5..dfcfe37 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 09b6bca..8685fb2 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index d6b67f3..46d0b8a 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index c8ea047..946f561 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index de8a402..48b04c7 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index d2f0895..938a017 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 1a061f0..9255a65 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 9dec2a9..717bd1a 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 736aacd..c36057e 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index e8c75cd..8b57660 100644 (file)
@@ -1,6 +1,6 @@
 --[[
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 644f057..63e6854 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index 17302ce..0efc55a 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 5c7dbc8..cdf2d92 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index 9fa6522..3609162 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index c5d0f19..6057d48 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index 7ecbfd1..843c0c7 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 0fc1b94..23f9a03 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 465203c..4aac0fd 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 718d756..2fd7cc0 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 3b92d26..d6d0b1b 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index cd85369..af24dab 100644 (file)
@@ -1,6 +1,6 @@
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index f62f110..fb92460 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 09bfddc..ff3e676 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index 32da2f0..7d8ed4b 100644 (file)
@@ -1,5 +1,5 @@
 @REM
-@REM Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+@REM Copyright 2016 ZTE Corporation.
 @REM
 @REM Licensed under the Apache License, Version 2.0 (the "License");
 @REM you may not use this file except in compliance with the License.
index 7ae204c..94ab13e 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+# Copyright 2016 ZTE Corporation.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
index dd271d9..3080439 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index ffa20e3..c1d8201 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 397aad5..c3924ce 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
index 1d70b8c..5776e7b 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
diff --git a/pom.xml b/pom.xml
index 82a36dd..747880d 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 
-    Copyright 2016 2015-2016 ZTE, Inc. and others. All rights reserved.
+    Copyright 2016 ZTE Corporation.
 
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.