CommonLibrary(util/rest-client) code upload.
authortian.ming@huawei.com <tian.ming@huawei.com>
Thu, 25 Aug 2016 03:54:47 +0000 (11:54 +0800)
committertian.ming@huawei.com <tian.ming@huawei.com>
Thu, 25 Aug 2016 04:10:24 +0000 (12:10 +0800)
commit8b49886b96d5f7ebc91dbf1aa158b31ac4a72848
tree101717a1c2af134de01bf4007486e9c3d44a6de9
parentb25d7a854e3cbf73fa2ee3a8260bf1ebb433cf04
CommonLibrary(util/rest-client) code upload.

Change-Id: I46c9c2ef19e43ebc7f61d8c1b5972c362e7f2d2a
Signed-off-by: tian.ming@huawei.com <tian.ming@huawei.com>
55 files changed:
CommonLibrary/.gitignore [new file with mode: 0644]
CommonLibrary/common-util/.gitignore [new file with mode: 0644]
CommonLibrary/common-util/pom.xml [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/encrypt/cbb/CipherCreator.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/encrypt/cbb/impl/AesCipher.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/encrypt/cbb/impl/AesCipherFactory.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/encrypt/cbb/inf/AbstractCipher.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/encrypt/cbb/inf/AbstractCipherFactory.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/encrypt/cbb/sha/Sha256.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/util/RestUtils.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/util/impl/SystemEnvVariablesDefImpl.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/util/impl/SystemEnvVariablesFactory.java [new file with mode: 0644]
CommonLibrary/common-util/src/main/java/org/openo/baseservice/util/inf/SystemEnvVariables.java [new file with mode: 0644]
CommonLibrary/common-util/src/test/java/org/openo/baseservice/encrypt/cbb/impl/AesCipherTest.java [new file with mode: 0644]
CommonLibrary/common-util/src/test/java/org/openo/baseservice/encrypt/cbb/sha/Sha256Test.java [new file with mode: 0644]
CommonLibrary/common-util/src/test/java/org/openo/baseservice/util/RestUtilsTest.java [new file with mode: 0644]
CommonLibrary/common-util/src/test/java/org/openo/baseservice/util/impl/SystemEnvVariablesDefImplTest.java [new file with mode: 0644]
CommonLibrary/pom.xml [new file with mode: 0644]
CommonLibrary/rest-client/.gitignore [new file with mode: 0644]
CommonLibrary/rest-client/pom.xml [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/remoteservice/exception/ExceptionArgs.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/remoteservice/exception/ServiceException.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/ReaderHelper.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/ServiceUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/clientsdk/HttpUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/clientsdk/JsonUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/clientsdk/RestClientUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/DefaultAsyncCallback.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/HttpBaseRest.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/HttpRest.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestHttpContentExchange.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/Restful.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulAsyncCallback.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulClientConst.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulConfigure.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulFactory.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulOptions.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulParametes.java [new file with mode: 0644]
CommonLibrary/rest-client/src/main/java/org/openo/baseservice/roa/util/restclient/RestfulResponse.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/ReaderHelperTest.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/TestServiceUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/clientsdk/TestHttpUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/clientsdk/TestJsonUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/clientsdk/TestRestClientUtil.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/clientsdk/demo/JsonTestClass.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestHttpRest.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestRestHttpContentExchange.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestRestfulConfigure.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestRestfulFactory.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestRestfulOptions.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestRestfulParametes.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/java/org/openo/baseservice/roa/util/restclient/TestRestfulResponse.java [new file with mode: 0644]
CommonLibrary/rest-client/src/test/resources/etc/conf/restclient.json [new file with mode: 0644]
CommonLibrary/rest-client/src/test/resources/rest-client-test.json [new file with mode: 0644]
CommonLibrary/rest-client/src/test/resources/sample.txt.gz [new file with mode: 0644]