[SECIOTSRK-700] *fix & generate java doc
authorm.dalakov <m.dalakov@samsung.com>
Wed, 29 Nov 2017 08:38:26 +0000 (10:38 +0200)
committerm.dalakov <m.dalakov@samsung.com>
Wed, 29 Nov 2017 08:38:26 +0000 (10:38 +0200)
290 files changed:
servers/alive/pom.xml
servers/alive/src/main/java/com/samsung/alive/Alive.java
servers/alive/src/main/java/com/samsung/alive/exception/AliveDevicesServiceError.java
servers/alive/src/main/java/com/samsung/alive/exception/NoUserFound.java
servers/alive/src/main/java/com/samsung/alive/rest/AliveRestController.java
servers/alive/src/main/java/com/samsung/alive/service/AliveDevicesService.java
servers/alive/src/main/java/com/samsung/alive/service/CloudService.java
servers/alive/src/main/java/com/samsung/alive/service/impl/AliveDevicesServiceImpl.java
servers/alive/src/main/java/com/samsung/alive/service/impl/CloudServiceImpl.java
servers/alive/src/main/java/com/samsung/alive/service/impl/CodeAndAccessTokenPair.java
servers/alive/src/main/java/com/samsung/alive/utils/rest/dsm/DsmApi.java
servers/alive/src/main/java/com/samsung/alive/utils/rest/dsm/DsmApiError.java
servers/alive/src/main/java/com/samsung/alive/utils/rest/dsm/DsmApiImpl.java
servers/alive/src/main/resources/logback.xml
servers/alive/src/main/resources/root-context.xml
servers/alive/src/main/resources/spring-database.xml
servers/alive/src/test/java/com/samsung/alive/AliveTest.java
servers/alive/src/test/java/com/samsung/alive/rest/AliveRestControllerTest.java
servers/alive/src/test/java/com/samsung/alive/service/impl/AliveDevicesServiceImplTest.java
servers/alive/src/test/java/com/samsung/alive/utils/rest/DsmApiImplTest.java
servers/alive/src/test/resources/logback.xml
servers/alive/src/test/resources/root-context.xml
servers/alive/src/test/resources/spring-database.xml
servers/api-integration-tests/pom.xml
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/Alive.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/AppConfigInit.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/DBConfigInit.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/MQListenerAPI.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/MQPublisherAPI.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/Reports.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/Request.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/api/Rest.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/model/Device.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/model/JSONDevice.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/model/User.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/utils/Cbor.java
servers/api-integration-tests/src/main/java/com/samsung/ci/basic/utils/Utils.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/alive/AliveActualizeDevicesStatusTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/mq/DeviceRegistrationAndUnregistrationWithoutCloudTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/mq/PolicyWitoutCloudTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/mq/ReportsWithOutCloudTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/reports/RestRuleReportsTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/reports/TIAReportsTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/useractions/AuthorizedWithoutCloudTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/useractions/BasicUserAction.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/useractions/DeviceApiWithoutCloudTest.java
servers/api-integration-tests/src/test/java/com/samsung/ci/test/useractions/UserDSMActionTest.java
servers/commons/pom.xml
servers/commons/src/main/java/com/samsung/commons/domain/Agent.java
servers/commons/src/main/java/com/samsung/commons/domain/CustomUserDetails.java
servers/commons/src/main/java/com/samsung/commons/domain/Device.java
servers/commons/src/main/java/com/samsung/commons/domain/IotCloudUser.java
servers/commons/src/main/java/com/samsung/commons/domain/Policy.java
servers/commons/src/main/java/com/samsung/commons/domain/Report.java
servers/commons/src/main/java/com/samsung/commons/domain/ReportType.java
servers/commons/src/main/java/com/samsung/commons/domain/Role.java
servers/commons/src/main/java/com/samsung/commons/domain/Rule.java
servers/commons/src/main/java/com/samsung/commons/domain/User.java
servers/commons/src/main/java/com/samsung/commons/model/MQPolicy.java
servers/commons/src/main/java/com/samsung/commons/model/Notification.java
servers/commons/src/main/java/com/samsung/commons/repository/AgentRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/DeviceRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/IotCloudUserRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/PolicyRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/ReportRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/ReportTypeRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/RoleRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/RuleRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/UserDetailsRepository.java
servers/commons/src/main/java/com/samsung/commons/repository/UserRepository.java
servers/commons/src/main/java/com/samsung/commons/service/AgentService.java
servers/commons/src/main/java/com/samsung/commons/service/CommonService.java
servers/commons/src/main/java/com/samsung/commons/service/DeviceService.java
servers/commons/src/main/java/com/samsung/commons/service/IotCloudService.java
servers/commons/src/main/java/com/samsung/commons/service/PolicyService.java
servers/commons/src/main/java/com/samsung/commons/service/ReportService.java
servers/commons/src/main/java/com/samsung/commons/service/ReportTypeService.java
servers/commons/src/main/java/com/samsung/commons/service/RoleService.java
servers/commons/src/main/java/com/samsung/commons/service/RuleService.java
servers/commons/src/main/java/com/samsung/commons/service/UserDetailsService.java
servers/commons/src/main/java/com/samsung/commons/service/UserService.java
servers/commons/src/main/java/com/samsung/commons/service/impl/AgentServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/DeviceServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/IotCloudServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/PolicyServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/ReportServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/ReportTypeServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/RoleServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/RuleServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/UserDetailsServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/service/impl/UserServiceImpl.java
servers/commons/src/main/java/com/samsung/commons/utils/TestUtils.java
servers/commons/src/main/java/com/samsung/commons/utils/Utils.java
servers/commons/src/main/java/com/samsung/commons/utils/sender/HttpSender.java
servers/commons/src/main/java/com/samsung/commons/utils/sender/exception/BadUrlException.java
servers/commons/src/main/java/com/samsung/commons/utils/sender/exception/HttpSenderException.java
servers/commons/src/main/java/com/samsung/commons/utils/sender/exception/NotAvailableException.java
servers/commons/src/main/java/com/samsung/commons/utils/sender/exception/PostFailedException.java
servers/commons/src/main/java/com/samsung/commons/utils/sync/AsyncCode.java
servers/commons/src/main/java/com/samsung/commons/utils/sync/ResultCallback.java
servers/commons/src/main/java/com/samsung/commons/utils/sync/Synchronous.java
servers/commons/src/test/java/com/samsung/commons/DomainEqualsHashCodeTest.java
servers/commons/src/test/java/com/samsung/commons/DomainToStringTest.java
servers/commons/src/test/java/com/samsung/commons/EqualsVerifierTest.java
servers/commons/src/test/java/com/samsung/commons/IncreaseCoverageTest.java
servers/commons/src/test/java/com/samsung/commons/UtilsTest.java
servers/commons/src/test/java/com/samsung/commons/domain/agent/AgentTest.java
servers/commons/src/test/java/com/samsung/commons/domain/device/DeviceTest.java
servers/commons/src/test/java/com/samsung/commons/domain/device/statistics/ReportTest.java
servers/commons/src/test/java/com/samsung/commons/domain/device/statistics/ReportTypeTest.java
servers/commons/src/test/java/com/samsung/commons/domain/policy/PolicyTest.java
servers/commons/src/test/java/com/samsung/commons/domain/user/CustomUserDetailsTest.java
servers/commons/src/test/java/com/samsung/commons/domain/user/RoleTest.java
servers/commons/src/test/java/com/samsung/commons/domain/user/UserTest.java
servers/commons/src/test/java/com/samsung/commons/pojo/PojoTestForMQRestDomain.java
servers/commons/src/test/java/com/samsung/commons/pojo/PojoTestForMQRestModel.java
servers/commons/src/test/java/com/samsung/commons/repository/AgentRepositoryTest.java
servers/commons/src/test/java/com/samsung/commons/repository/DeviceRepositoryTest.java
servers/commons/src/test/java/com/samsung/commons/repository/RoleRepositoryTest.java
servers/commons/src/test/java/com/samsung/commons/repository/UserRepositoryTest.java
servers/commons/src/test/java/com/samsung/commons/service/AgentServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/DeviceServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/IoTCloudServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/PolicyServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/ReportTypeServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/RoleServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/UserDetailsServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/UserServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/impl/ReportServiceTest.java
servers/commons/src/test/java/com/samsung/commons/service/impl/RuleServiceImplTest.java
servers/commons/src/test/java/com/samsung/commons/utils/TestUtilsTest.java
servers/commons/src/test/java/com/samsung/commons/utils/sender/HttpSenderTest.java
servers/commons/src/test/java/com/samsung/commons/utils/sync/SynchronousTest.java
servers/commons/src/test/resources/root-context.xml
servers/commons/src/test/resources/spring-database.xml
servers/dsm/pom.xml
servers/dsm/src/main/java/com/samsung/dsm/controller/AccountController.java
servers/dsm/src/main/java/com/samsung/dsm/controller/AdminController.java
servers/dsm/src/main/java/com/samsung/dsm/controller/DashboardController.java
servers/dsm/src/main/java/com/samsung/dsm/controller/DashboardDevicesController.java
servers/dsm/src/main/java/com/samsung/dsm/controller/HomeController.java
servers/dsm/src/main/java/com/samsung/dsm/controller/UserController.java
servers/dsm/src/main/java/com/samsung/dsm/domain/oauth/OAuthAccessToken.java
servers/dsm/src/main/java/com/samsung/dsm/domain/oauth/OAuthClientDetails.java
servers/dsm/src/main/java/com/samsung/dsm/domain/oauth/OAuthClientToken.java
servers/dsm/src/main/java/com/samsung/dsm/domain/oauth/OAuthCode.java
servers/dsm/src/main/java/com/samsung/dsm/domain/oauth/OAuthRefreshToken.java
servers/dsm/src/main/java/com/samsung/dsm/model/request/ApplyPolicy.java
servers/dsm/src/main/java/com/samsung/dsm/model/request/EditUser.java
servers/dsm/src/main/java/com/samsung/dsm/model/request/NewUser.java
servers/dsm/src/main/java/com/samsung/dsm/model/request/ResetPassword.java
servers/dsm/src/main/java/com/samsung/dsm/model/restapi/RestAgent.java
servers/dsm/src/main/java/com/samsung/dsm/model/restapi/RestDevice.java
servers/dsm/src/main/java/com/samsung/dsm/model/restapi/RestEntity.java
servers/dsm/src/main/java/com/samsung/dsm/model/restapi/converter/AgentConverter.java
servers/dsm/src/main/java/com/samsung/dsm/model/restapi/converter/DeviceConverter.java
servers/dsm/src/main/java/com/samsung/dsm/model/restapi/converter/DomainToRestConverter.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/BaseView.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/DeviceOverview.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/ViewAgent.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/ViewDashboard.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/ViewDevice.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/ViewPolicyGroup.java
servers/dsm/src/main/java/com/samsung/dsm/model/view/ViewReport.java
servers/dsm/src/main/java/com/samsung/dsm/policy/PolicyConfig.java
servers/dsm/src/main/java/com/samsung/dsm/policy/PolicyConfigException.java
servers/dsm/src/main/java/com/samsung/dsm/policy/parser/JSONPolicyConfigParser.java
servers/dsm/src/main/java/com/samsung/dsm/policy/parser/PolicyConfigParser.java
servers/dsm/src/main/java/com/samsung/dsm/policy/parser/PolicyParserFactory.java
servers/dsm/src/main/java/com/samsung/dsm/report/ReportConfig.java
servers/dsm/src/main/java/com/samsung/dsm/report/analyzer/ReportAnalyzerKeys.java
servers/dsm/src/main/java/com/samsung/dsm/report/analyzer/impl/RuleAnalyzer.java
servers/dsm/src/main/java/com/samsung/dsm/report/parser/JSONReportConfigParser.java
servers/dsm/src/main/java/com/samsung/dsm/report/parser/ReportConfigParser.java
servers/dsm/src/main/java/com/samsung/dsm/repository/OAuthAccessTokenRepository.java
servers/dsm/src/main/java/com/samsung/dsm/rest/accesstoken/AccessTokenApi.java
servers/dsm/src/main/java/com/samsung/dsm/rest/accesstoken/LoginServiceGeneralException.java
servers/dsm/src/main/java/com/samsung/dsm/rest/device/DeviceApi.java
servers/dsm/src/main/java/com/samsung/dsm/rest/device/DeviceNotFoundByUuid.java
servers/dsm/src/main/java/com/samsung/dsm/rest/iotcloud/IotCloudApi.java
servers/dsm/src/main/java/com/samsung/dsm/rest/iotcloud/IotCloudAssociatedUserNotExists.java
servers/dsm/src/main/java/com/samsung/dsm/rest/iotcloud/IotCloudUserExists.java
servers/dsm/src/main/java/com/samsung/dsm/rest/policy/PolicyApi.java
servers/dsm/src/main/java/com/samsung/dsm/rest/policy/PolicyNotFoundByDeviceUuidAndAgentUuid.java
servers/dsm/src/main/java/com/samsung/dsm/rest/report/ReportApi.java
servers/dsm/src/main/java/com/samsung/dsm/rest/rule/RuleApi.java
servers/dsm/src/main/java/com/samsung/dsm/rule/parser/JSONRuleConfigParser.java
servers/dsm/src/main/java/com/samsung/dsm/rule/parser/RuleConfig.java
servers/dsm/src/main/java/com/samsung/dsm/rule/parser/RuleConfigParser.java
servers/dsm/src/main/java/com/samsung/dsm/security/authentication/PasswordEncoder.java
servers/dsm/src/main/java/com/samsung/dsm/security/authentication/impl/BCPasswordEncoder.java
servers/dsm/src/main/java/com/samsung/dsm/service/AccessTokenService.java
servers/dsm/src/main/java/com/samsung/dsm/service/LoginAuthCodeService.java
servers/dsm/src/main/java/com/samsung/dsm/service/OAuth2AuthorizationService.java
servers/dsm/src/main/java/com/samsung/dsm/service/impl/AccessTokenServiceImpl.java
servers/dsm/src/main/java/com/samsung/dsm/service/impl/OAuth2AuthorizationServiceImpl.java
servers/dsm/src/main/java/com/samsung/dsm/service/impl/auth/LoginAuthCodeServiceClientCredentials.java
servers/dsm/src/main/java/com/samsung/dsm/service/impl/auth/LoginAuthCodeServiceImpl.java
servers/dsm/src/main/java/com/samsung/dsm/utils/alive/AliveApi.java
servers/dsm/src/main/java/com/samsung/dsm/utils/alive/AliveApiImpl.java
servers/dsm/src/main/java/com/samsung/dsm/utils/alive/AliveApiSenderException.java
servers/dsm/src/main/java/com/samsung/dsm/utils/mq/MQApi.java
servers/dsm/src/main/java/com/samsung/dsm/utils/mq/MQApiImpl.java
servers/dsm/src/main/resources/apache-tiles.xml
servers/dsm/src/main/resources/root-context.xml
servers/dsm/src/main/resources/servlet-context.xml
servers/dsm/src/main/resources/spring-database.xml
servers/dsm/src/main/resources/spring-security.xml
servers/dsm/src/main/webapp/WEB-INF/tiles/templates/template.jsp
servers/dsm/src/main/webapp/resources/css/main.scss
servers/dsm/src/main/webapp/resources/js/controls.js
servers/dsm/src/main/webapp/resources/js/devices/agents.js
servers/dsm/src/main/webapp/resources/js/devices/devices.js
servers/dsm/src/main/webapp/resources/js/devices/policies.js
servers/dsm/src/main/webapp/resources/js/tools/tools.js
servers/dsm/src/test/java/com/samsung/dsm/EqualsHashCodeTest.java
servers/dsm/src/test/java/com/samsung/dsm/EqualsVerfierTest.java
servers/dsm/src/test/java/com/samsung/dsm/IncreaseCoverageTest.java
servers/dsm/src/test/java/com/samsung/dsm/ToStringTest.java
servers/dsm/src/test/java/com/samsung/dsm/controller/AccountControllerTest.java
servers/dsm/src/test/java/com/samsung/dsm/controller/AdminControllerTest.java
servers/dsm/src/test/java/com/samsung/dsm/controller/DashboardControllerTest.java
servers/dsm/src/test/java/com/samsung/dsm/controller/DashboardDevicesControllerTest.java
servers/dsm/src/test/java/com/samsung/dsm/controller/HomeControllerTest.java
servers/dsm/src/test/java/com/samsung/dsm/controller/UserControllerTest.java
servers/dsm/src/test/java/com/samsung/dsm/domain/oauth/OAuthAccessTokenTest.java
servers/dsm/src/test/java/com/samsung/dsm/domain/oauth/OAuthClientDetailsTest.java
servers/dsm/src/test/java/com/samsung/dsm/domain/oauth/OAuthClientTokenTest.java
servers/dsm/src/test/java/com/samsung/dsm/domain/oauth/OAuthCodeTest.java
servers/dsm/src/test/java/com/samsung/dsm/domain/oauth/OAuthRefreshTokenTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/request/ApplyPolicyTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/request/EditUserTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/request/NewUserTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/request/ResetPasswordTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/view/BaseViewTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/view/ViewDeviceTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/view/ViewPolicyGroupTest.java
servers/dsm/src/test/java/com/samsung/dsm/model/view/ViewReportTest.java
servers/dsm/src/test/java/com/samsung/dsm/pojo/PojoTestForModelRequest.java
servers/dsm/src/test/java/com/samsung/dsm/pojo/PojoTestForModelRest.java
servers/dsm/src/test/java/com/samsung/dsm/policy/parser/JSONParserTest.java
servers/dsm/src/test/java/com/samsung/dsm/report/analyzer/ReportAnalyzerKeysTest.java
servers/dsm/src/test/java/com/samsung/dsm/report/analyzer/impl/RuleAnalyzerTest.java
servers/dsm/src/test/java/com/samsung/dsm/report/parser/JSONReportParserTest.java
servers/dsm/src/test/java/com/samsung/dsm/rest/DeviceApiTest.java
servers/dsm/src/test/java/com/samsung/dsm/rest/IotCloudApiTest.java
servers/dsm/src/test/java/com/samsung/dsm/rest/PolicyApiTest.java
servers/dsm/src/test/java/com/samsung/dsm/rest/ReportApiTest.java
servers/dsm/src/test/java/com/samsung/dsm/rest/RuleApiTest.java
servers/dsm/src/test/java/com/samsung/dsm/rest/accesstoken/AccessTokenApiTest.java
servers/dsm/src/test/java/com/samsung/dsm/rule/parser/RuleConfigParserTest.java
servers/dsm/src/test/java/com/samsung/dsm/service/AccessTokenServiceTest.java
servers/dsm/src/test/java/com/samsung/dsm/service/impl/OAuth2AuthorizationServiceTest.java
servers/dsm/src/test/java/com/samsung/dsm/utils/JsonUtils.java
servers/dsm/src/test/java/com/samsung/dsm/utils/mq/MQApiImplMock.java
servers/dsm/src/test/java/com/samsung/dsm/utils/mq/MQSenderTest.java
servers/dsm/src/test/resources/root-context.xml
servers/dsm/src/test/resources/spring-database.xml
servers/dsm/src/test/resources/spring-security.xml
servers/mq/pom.xml
servers/mq/src/main/java/com/samsung/servermq/HealthCheck.java
servers/mq/src/main/java/com/samsung/servermq/ServerMQ.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/KafkaConsumerWrapper.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/KafkaErrorMessages.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/KafkaProducerWrapper.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/MessageQueueListener.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/MessageQueuePublisher.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/Publisher.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/extractor/PostDataExtractor.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/extractor/impl/DeviceRegistrationPostDataExtractor.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/extractor/impl/DeviceUnRegistrationPostDataExtractor.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/extractor/impl/PolicyPostDataExtractor.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/extractor/impl/ReportPostDataExtractor.java
servers/mq/src/main/java/com/samsung/servermq/iotivity/report/PrepareReport.java
servers/mq/src/main/java/com/samsung/servermq/rest/DSMRestController.java
servers/mq/src/main/java/com/samsung/servermq/utils/Cbor.java
servers/mq/src/main/java/com/samsung/servermq/utils/MessageQueueKeys.java
servers/mq/src/main/java/com/samsung/servermq/utils/MessageQueueUtils.java
servers/mq/src/main/java/com/samsung/servermq/utils/rest/DsmApi.java
servers/mq/src/main/java/com/samsung/servermq/utils/rest/DsmApiImpl.java
servers/mq/src/main/resources/iotivity.xml
servers/mq/src/main/resources/logback.xml
servers/mq/src/main/resources/root-context.xml
servers/mq/src/main/resources/spring-database.xml
servers/mq/src/test/resources/iotivity.xml
servers/mq/src/test/resources/logback.xml
servers/mq/src/test/resources/root-context.xml
servers/mq/src/test/resources/spring-database.xml
servers/pom.xml
servers/settings.xml

index 621c647..a4fab0e 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 29cbb9d..220ddab 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 82b7322..d49bfd1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index afbae9f..5518ebb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index a545e13..af0f41f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index d5c87ff..0a7caca 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -33,6 +33,7 @@ public interface AliveDevicesService {
      * @param user     user
      * @param password password
      * @return code and access token
+     * @throws AliveDevicesServiceError the alive devices service error
      */
     Optional<CodeAndAccessTokenPair> signup(User user, String password) throws AliveDevicesServiceError;
 
index 13775e7..04c60b7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -27,6 +27,7 @@ public interface CloudService {
     /**
      * Sign in
      *
+     * @param pair Code and AccessTokenPair
      * @return status
      */
     boolean signIn(CodeAndAccessTokenPair pair);
index 987a846..6557cc1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index f2c8095..07c63f0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 8c4d8ae..9e01f7e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 413c540..02abefd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 4d9d779..43928e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index f6d7920..7d405bd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index d0d58d1..f16ace5 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index eabe288..6254cdc 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index e780a94..dd9cc06 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 8cba14d..8158a6a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index b58f741..2edff27 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 546256b..be49be6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 87b091e..4a943b4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 612152f..bdc3a58 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index f8eaac8..8fe3312 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index ad6bcfc..26174a5 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index e8672b0..ceaf9f4 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index a439f3a..5acf474 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import org.apache.log4j.Logger;
  * @brief The type Alive.
  * @date Created : 9/4/2017
  * @date Modified : 9/4/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 99433a8..5047ad9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import org.springframework.core.env.Environment;
  * @brief Init application configuration
  * @date Created : 9/4/2017
  * @date Modified : 9/4/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index bd3a4e5..75d7e65 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import static com.samsung.ci.basic.api.AppConfigInit.*;
  * @brief Init DB configuration
  * @date Created : 9/7/2017
  * @date Modified : 9/7/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index cc04214..083ccd6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -35,7 +35,7 @@ import kafka.utils.ZkUtils;
  *        user, delete user if not admin, login as admin, delete user if admin
  * @date Created : 9/12/2017
  * @date Modified : 9/12/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  * 
index cc4a3ff..6eb4e8b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.samsung.ci.basic.utils.Cbor;
  * @brief The type Mq publisher api.
  * @date Created : 9/12/2017
  * @date Modified : 9/12/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index e532f18..9f1adf3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import static io.restassured.RestAssured.given;
  * @brief Base class for Reports
  * @date Created : 10/3/2017
  * @date Modified : 10/3/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index aa433cb..6bff0b9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import static io.restassured.RestAssured.given;
  * @brief Base class for request
  * @date Created : 9/4/2017
  * @date Modified : 9/4/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 378b23f..0b3bf2b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import static io.restassured.RestAssured.given;
  * @brief Base class for rest
  * @date Created : 9/4/2017
  * @date Modified : 9/4/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 4bff60d..364df52 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.ci.basic.model;
  * @brief Model for device
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 8724c5b..faacae7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.ci.basic.model;
  * @brief Model for device
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9421d4c..1a43e01 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.ci.basic.model;
  * @brief Model for device
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a81574b..bc1362f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import java.io.IOException;
  * @brief The type Cbor.
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 78bca24..abd5f1f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import org.springframework.core.io.Resource;
  * @brief The type Utils.java
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1756223..b41973c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import com.samsung.ci.test.useractions.BasicUserAction;
  * @brief The type Iot actualize status test.
  * @date Created : 2/10/2017
  * @date Modified : 2/10/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 6d20217..9dd4553 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -29,7 +29,7 @@ import io.restassured.response.Response;
  * @brief The type Device registration and unregistration without cloud test.
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9039f9c..eaef9dd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import com.samsung.ci.test.useractions.BasicUserAction;
  * @brief The type Policy witout cloud test.
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9dc70bd..58ec3bc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -38,7 +38,7 @@ import io.restassured.response.Response;
  * @brief The type Reports with out cloud test.
  * @date Created : 9/21/2017
  * @date Modified : 9/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d644871..cc0c506 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -33,7 +33,7 @@ import io.restassured.response.Response;
  * @brief The type Test rest rule reports.
  * @date Created : 10/23/2017
  * @date Modified : 11/3/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ca6ea6f..58b0c78 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -37,7 +37,7 @@ import io.restassured.response.Response;
  * @brief The type TIAReportsTest.
  * @date Created : 10/3/2017
  * @date Modified : 10/3/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 2118940..0d4ea9f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import org.junit.jupiter.api.Test;
  * @brief Authorized without cloud scenario
  * @date Created : 9/6/2017
  * @date Modified : 9/6/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d7e4c53..4fb95d4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -28,7 +28,7 @@ import static org.hamcrest.Matchers.equalTo;
  * @brief Basic user action
  * @date Created : 9/4/2017
  * @date Modified : 9/4/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 384973c..f1252eb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -28,7 +28,7 @@ import static org.junit.Assert.assertEquals;
  * @brief Device API for test different device types
  * @date Created : 10/23/2017
  * @date Modified : 11/6/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 90bf4d8..1a39dcc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import io.restassured.response.Response;
  * @brief User registration scenario
  * @date Created : 9/7/2017
  * @date Modified : 9/7/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 6fc06b4..7c46876 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 3ecdfd3..cf1ac6d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import java.io.Serializable;
  * @brief Agent DAO class
  * @date Created : 6/29/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 55a5507..fd39dd5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import java.util.Collection;
  * @brief CustomUserDetails DAO table
  * @date Created : 1/9/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 096e9a7..30cc55f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import static javax.persistence.CascadeType.ALL;
  * @brief Device DAO class
  * @date Created : 6/26/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
@@ -206,6 +206,7 @@ public class Device implements Serializable {
      * @param policy     the device's policy instance
      * @param user       the user
      * @param parentUuid the parent uuid
+     * @param mode the mode
      */
     public Device(String uuid, String name, String type, String model, Integer status, Policy policy, User user,
             String parentUuid, String mode) {
@@ -233,6 +234,7 @@ public class Device implements Serializable {
      * @param user       the user
      * @param removed    the removed
      * @param parentUuid the parent uuid
+     * @param mode the mode
      */
     public Device(String uuid, String name, String type, String model, Integer status, Policy policy, User user,
             boolean removed, String parentUuid, String mode) {
index 5f5ea3a..6802f86 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import java.io.Serializable;
  * @brief  Domain class for IotCloudUser
  * @date Created : 7/13/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 06cdb2d..c8fac8e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -33,7 +33,7 @@ import com.samsung.commons.utils.Utils;
  * @brief DAO class for Policy table
  * @date Created : 1/9/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 43f201f..490c8f7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import javax.persistence.*;
  * @brief Report DAO table
  * @date Created : 1/9/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 5736552..10260be 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import javax.persistence.*;
  * @brief ReportType DAO table
  * @date Created : 1/9/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f159e09..56847a9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import java.io.Serializable;
  * @brief Role DAO table
  * @date Created : 1/9/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9e5c0d4..9857ff7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -28,7 +28,7 @@ import org.apache.commons.lang3.builder.HashCodeBuilder;
  * @brief Rule DAO table
  * @date Created : 10/3/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 978e138..4f2cd80 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -29,7 +29,7 @@ import javax.persistence.Table;
  * @brief User DAO table
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9a4302c..4ba66f9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -16,7 +16,7 @@ import javax.validation.constraints.NotNull;
  * @brief Policy model for Message Queue.
  * @date Created : 7/18/2017
  * @date Modified : 8/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b719dbb..3691e7a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import javax.validation.constraints.NotNull;
  * @brief Notification model for Message Queue.
  * @date Created : 7/18/2017
  * @date Modified : 8/21/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 49dd15f..a66c3f0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import java.util.List;
  * @brief Agent repository
  * @date Created : 6/26/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a79ccd0..d9a7169 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import com.samsung.commons.domain.User;
  * @brief Device repository
  * @date Created : 6/26/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 60f9684..7c3ce41 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import org.springframework.transaction.annotation.Transactional;
  * @brief IotCloudUser repository
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 2dd5fbd..0ad2bdd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import org.springframework.stereotype.Repository;
  * @brief Policy repository
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 69ffb18..646fcda 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -26,7 +26,7 @@ import java.util.List;
  * @brief Report repository
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index e1bc13b..2a1fa88 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import com.samsung.commons.domain.ReportType;
  * @brief Report type repository
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 3b916b5..cdbc216 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.samsung.commons.domain.Role;
  * @brief Role repository
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 3a60b00..8485fca 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import com.samsung.commons.domain.Rule;
  * @brief Rule repository
  * @date Created : 10/3/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b29c2ce..eb95f13 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import org.springframework.transaction.annotation.Transactional;
  * @brief User Details repository
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1d7f2b4..986c749 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import java.util.List;
  * @brief User repository
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f8e62ca..f3dda7b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import java.util.List;
  * @brief Agent service
  * @date Created : 6/29/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b7f6a88..e607f61 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -16,7 +16,7 @@ package com.samsung.commons.service;
  * @brief Common service
  * @date Created : 1/9/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 05c0498..756c00d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import java.util.Set;
  * @brief Device service
  * @date Created : 6/26/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
@@ -103,6 +103,7 @@ public interface DeviceService extends CommonService<Device> {
      * @param user   user
      * @param route  the route
      * @return {@link Device}
+     * @param mode the mode
      */
     Device init(String uuid, String name, String type, String model, int status, User user, String route, String mode);
 
index b7776b9..e2f5eb9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import java.util.List;
  * @brief IotCloud service
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1a671dd..4825234 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import com.samsung.commons.domain.Policy;
  * @brief Policy service
  * @date Created : 6/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 22e9407..b574878 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.samsung.commons.domain.ReportType;
  * @brief Report service
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 0728867..df1e817 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import com.samsung.commons.domain.ReportType;
  * @brief Report type service
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f3ac965..1ee05e5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import com.samsung.commons.domain.Role;
  * @brief Role service
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 52863cd..73fe887 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import com.samsung.commons.domain.Rule;
  * @brief Rule service
  * @date Created : 10/3/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d2edcda..5d57c28 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import com.samsung.commons.domain.CustomUserDetails;
  * @brief User Details service
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ad2d005..b95295d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import java.util.List;
  * @brief User service
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a8a2c8d..72ca479 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -27,7 +27,7 @@ import java.util.List;
  * @brief Agent service implementation
  * @date Created : 6/29/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 81c9eb7..248a9f0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -32,7 +32,7 @@ import java.util.Set;
  * @brief Device service implementation
  * @date Created : 6/26/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ddfa291..af9c342 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import java.util.List;
  * @brief IotCloud service implementation
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index fb69152..29c2073 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -28,7 +28,7 @@ import com.samsung.commons.service.PolicyService;
  * @brief Policy service implementation
  * @date Created : 6/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f146eb6..8252d6c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import com.samsung.commons.service.ReportTypeService;
  * @brief Report service implementation
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 0ca8f83..87c6522 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import org.springframework.stereotype.Service;
  * @brief Report type service implementation
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 4ee7a6f..5cb0611 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import java.util.List;
  * @brief Role service implementation
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f4c96b4..c8aff16 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import com.samsung.commons.service.RuleService;
  * @brief Rule service implementation
  * @date Created : 10/3/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 51e95c3..f9539b3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import java.util.List;
  * @brief User Details service implementation
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 2742b63..5c9c163 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -30,7 +30,7 @@ import com.samsung.commons.service.UserService;
  * @brief User service implementation
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 12a2fca..b305488 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -28,7 +28,7 @@ import java.util.List;
  * @brief Collection of methods that helps to prepare data for tests
  * @date Created : 9/5/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 588d33d..56f848a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import org.springframework.validation.ObjectError;
  * @brief Common utils methods.
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 6d299c8..7985bb8 100644 (file)
@@ -1,5 +1,5 @@
-/*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+/*gi
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -33,7 +33,7 @@ import static org.springframework.http.HttpMethod.POST;
  * @brief Http sender
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
@@ -129,12 +129,6 @@ public class HttpSender {
         doPost(requestString, null);
     }
 
-    /**
-     * Post entity
-     *
-     * @param requestString request string
-     * @throws HttpSenderException in case of post troubles
-     */
     public <T> void post(String requestString, Supplier<HttpEntity<T>> entitySupplier) throws HttpSenderException {
         doPost(requestString, entitySupplier);
     }
index b712281..2359e5c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -16,7 +16,7 @@ package com.samsung.commons.utils.sender.exception;
  * @brief Malformed URL
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 5ca03e1..8021214 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -16,7 +16,7 @@ package com.samsung.commons.utils.sender.exception;
  * @brief Root HttpSender exception
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index dd86ed1..1f091ca 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.commons.utils.sender.exception;
  * @brief Resource is not available
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a3c69e6..db1481e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import org.springframework.http.HttpStatus;
  * @brief Post failed
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b547392..8893355 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.commons.utils.sync;
  * @brief Async code with result callback
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index fe371b5..ccb4ddc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.commons.utils.sync;
  * @brief Result callback
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 49818a9..927f388 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import static java.util.Optional.ofNullable;
  * @brief Synchronous class
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ad91020..da9cc1b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 6c42b25..79b3f24 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index fd06531..c803be0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 09279a3..a51afab 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 987b247..c25476d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index aeecfff..0d9ada5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -29,7 +29,7 @@ import org.mockito.MockitoAnnotations;
  * @file AgentTest.java
  * @brief Unit tests for Agent domain class
  * @date Created : 27/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 64a6a74..260bd24 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -30,7 +30,7 @@ import org.mockito.MockitoAnnotations;
  * @file DeviceTest.java
  * @brief Unit tests for Device domain class
  * @date Created : 27/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index a1860ff..6a7bf05 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -27,7 +27,7 @@ import com.google.gson.JsonObject;
  * @file Report.java
  * @brief Tests for Report domain class.
  * @date Created : 26/08/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 166933b..60fee2b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 1d1a6e8..050ec98 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import com.samsung.commons.domain.Policy;
  * @brief Unit test for POLICY domain class
  * @date Created : 19/07/16
  * @date Modified : 19/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index a215539..bd7fb28 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import static org.mockito.Mockito.*;
  * @brief Unit -tests for CustomUserDetails class
  * @date Created : 21/03/16
  * @date Modified : 21/03/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index fb821e4..de101f2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import static org.junit.Assert.assertEquals;
  * @brief Unit -tests for Role class
  * @date Created : 21/03/16
  * @date Modified : 21/03/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index bfb6074..5f573fb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import java.util.Date;
  * @brief Unit -tests for User class
  * @date Created : 21/03/16
  * @date Modified : 19/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index dcc7922..490c8ee 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 723b462..b3ae337 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 358265a..cc9fc61 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -26,7 +26,7 @@ import org.springframework.test.context.web.WebAppConfiguration;
  * @file AgentRepositoryTest.java
  * @brief Unit tests for Agent repository
  * @date Created : 29/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index ec46a41..c055b47 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -29,7 +29,7 @@ import org.springframework.test.context.web.WebAppConfiguration;
  * @file DeviceRepositoryTest.java
  * @brief Unit tests for Device repository
  * @date Created : 27/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index c28d6a8..d164b68 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 30ae808..5d2fa5e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 04cbe1c..0084687 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -37,7 +37,7 @@ import com.samsung.commons.domain.User;
  * @file AgentServiceTest.java
  * @brief Unit tests for Agent service
  * @date Created : 29/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index ccb0f05..561762c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -46,7 +46,7 @@ import com.samsung.commons.repository.ReportTypeRepository;
  * @brief Unit tests for Device service
  * @date Created : 30/06/16
  * @date Modified : 30/06/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 5ff6af1..1bc8e62 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -38,7 +38,7 @@ import com.samsung.commons.service.impl.IotCloudServiceImpl;
  * @brief UT for UserService
  * @date Created : 23/07/16
  * @date Modified: 23/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 23efabd..ad7bb55 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -47,7 +47,7 @@ import com.samsung.commons.service.impl.PolicyServiceImpl;
  * @file PolicyServiceTest.java
  * @brief Unit tests for Policy service
  * @date Created : 30/06/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 33e2268..8e54eee 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import static org.junit.Assert.*;
  * @brief UT for ReportType service
  * @date Created : 26/07/16
  * @date Created : 26/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index fc96008..fab03ab 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -26,7 +26,7 @@ import static org.junit.Assert.*;
  * @brief Unit test for RoleService
  * @date Created : 23/07/16
  * @date Modified: 23/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index c736269..8bf7423 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -41,7 +41,7 @@ import com.samsung.commons.service.impl.UserDetailsServiceImpl;
  * @file UserDetailsServiceTest.java
  * @brief UT for UserDetails service
  * @date Created : 27/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index d62f436..f485fa3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -59,7 +59,7 @@ import com.samsung.commons.service.impl.UserServiceImpl;
  * @brief UT for UserService
  * @date Created : 23/07/16
  * @date Modified: 23/07/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index d7eb2ba..64e8f42 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 69ba6d7..bdce7d3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index b9852ed..0a48ef3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 4a47cae..17984a1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 633df93..f02d6b1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import static org.junit.Assert.assertThat;
  * @brief Tests for Synchronous
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 901d39f..3ed479f 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 2af0e1b..405c985 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index caef2c3..f905443 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 21b3b00..da1606e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -41,7 +41,7 @@ import static com.samsung.commons.utils.Utils.returnView;
  * @brief Account controller
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 583282a..3af7973 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -42,7 +42,7 @@ import com.samsung.dsm.security.authentication.PasswordEncoder;
  * @brief Admin controller
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 139084e..c78be77 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import com.samsung.dsm.model.view.ViewDashboard;
  * @brief Dashboard controller
  * @date Created : 6/21/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d18fbff..7b9fe02 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -61,7 +61,7 @@ import com.samsung.dsm.utils.mq.MQApi;
  * @brief Dashboard devices controller
  * @date Created : 6/21/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 19bc78a..7ec2c63 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import static com.samsung.commons.utils.Utils.returnView;
  * @brief Home controller
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1295f1f..71f3fa3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
  * @brief User controller
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 06ba009..f171702 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import org.hibernate.annotations.Type;
  * @brief OAuth access token DAO table
  * @date Created : 7/6/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index c7a6ef2..0e253ec 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import javax.persistence.Table;
  * @brief OAuth client details DAO table
  * @date Created : 7/6/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a19fc9d..a1451e4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import org.hibernate.annotations.Type;
  * @brief OAuth client DAO table
  * @date Created : 7/6/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f27f1f3..665f290 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import org.hibernate.annotations.Type;
  * @brief OAuth code DAO table
  * @date Created : 7/6/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 0d3ebad..c0ee4dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import org.hibernate.annotations.Type;
  * @brief OAuth refresh token DAO table
  * @date Created : 7/6/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 3de9ffc..45158b7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import org.hibernate.validator.constraints.NotEmpty;
  * @brief Model for policy setting.
  * @date Created : 7/13/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 542a76d..2f91954 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import org.hibernate.validator.constraints.Length;
  * @brief Model of the edited user.
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 09fdbeb..ca42ea4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import org.hibernate.validator.constraints.Length;
  * @brief Model for new users registration.
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 20e7ea8..02fa377 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import javax.validation.constraints.Size;
  * @brief Model for password reseting.
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1fe920f..b285dbd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.model.restapi;
  * @brief The type Rest agent.
  * @date Created : 7/14/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a3e1ab1..295f579 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.model.restapi;
  * @brief The type Rest device.
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 6f0e471..0ab7763 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -16,7 +16,7 @@ package com.samsung.dsm.model.restapi;
  * @brief Marker interface for all the REST entities.
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b1fc2a1..5b4934d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -19,7 +19,7 @@ import com.samsung.dsm.model.restapi.RestAgent;
  * @brief Agent converter for REST
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index af9070c..b8c648b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import org.springframework.stereotype.Service;
  * @brief Device converter for REST
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f27a162..91508ed 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import com.samsung.dsm.model.restapi.RestEntity;
  * @brief Simple converter for conversion of Domain object to Rest Entity object
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d9a28b9..11308bb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import com.samsung.commons.domain.ReportType;
  * @brief Common view methods
  * @date Created : 7/18/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 5bbbcf9..0f94a4e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import com.samsung.dsm.policy.parser.PolicyParserFactory;
  * @brief Device overview model
  * @date Created : 7/25/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ea65741..586b19d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.samsung.dsm.policy.parser.PolicyParserFactory;
  * @brief Agent view model
  * @date Created : 7/5/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 103c789..ebe072f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import java.util.List;
  * @brief Dashboard view model
  * @date Created : 7/18/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 8d3e1e2..e84379d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import com.samsung.dsm.policy.parser.PolicyParserFactory;
  * @brief Device view model
  * @date Created : 7/5/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a5b7d0b..467a549 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import com.samsung.dsm.policy.parser.PolicyParserFactory;
  * @brief Policy group view model
  * @date Created : 7/5/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 3c12168..c020cbf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -26,7 +26,7 @@ import com.samsung.dsm.report.analyzer.impl.RuleAnalyzer;
  * @brief Report view model
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 19f5c5a..b08359b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import static java.util.Arrays.copyOf;
  * @brief Policy model
  * @date Created : 6/16/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ac9eea3..5f99fb3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.policy;
  * @brief Policy config exception
  * @date Created : 10/17/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b64ba58..3648a65 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import com.samsung.dsm.policy.PolicyConfig;
  * @brief JSON policy parser
  * @date Created : 6/15/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a5e9bbe..a8b2bc0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import com.samsung.dsm.policy.PolicyConfig;
  * @brief JSON policy parser
  * @date Created : 9/1/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 39cee00..1991b4f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.dsm.policy.parser;
  * @brief Policy parser factory
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 6238a88..b712009 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import java.util.Arrays;
  * @brief Report model
  * @date Created : 6/19/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index bdefb3c..2d25625 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.report.analyzer;
  * @brief The type Report analyzer keys
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 3d8992e..828225f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -36,7 +36,7 @@ import com.samsung.dsm.rule.parser.RuleConfigParser;
  * @brief The type Rule analyzer
  * @date Created : 10/5/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index eaeea8e..21709d4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import com.samsung.dsm.report.ReportConfig;
  * @brief JSON report parser
  * @date Created : 6/19/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index e332087..1f1b47c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import com.samsung.dsm.report.ReportConfig;
  * @brief JSON report parser
  * @date Created : 6/19/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index babaedc..52ad6a8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import com.samsung.dsm.domain.oauth.OAuthAccessToken;
  * @brief OAuth Access Token repository
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b893729..117e4ef 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -35,7 +35,7 @@ import com.samsung.dsm.service.LoginAuthCodeService;
  * @brief Access Token API
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9dd8eb6..82516f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import static org.springframework.http.HttpStatus.UNAUTHORIZED;
  * @brief The type Login service general exception.
  * @date Created : 7/14/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 92bbd50..c757f6b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -37,7 +37,7 @@ import static org.springframework.http.HttpStatus.OK;
  * @brief Device Rest API.
  * @date Created : 7/10/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b2972d2..5db2aff 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import static org.springframework.http.HttpStatus.NOT_FOUND;
  * @brief The type Device not found by uuid.
  * @date Created : 7/10/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 3424a4f..b6188ec 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -30,7 +30,7 @@ import com.samsung.commons.service.IotCloudService;
  * @brief ICloud REST API.
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ea70249..0eac1ec 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import static org.springframework.http.HttpStatus.NOT_FOUND;
  * @brief The type Iot cloud associated user not exists.
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d590fcb..b4ae26f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import static org.springframework.http.HttpStatus.CONFLICT;
  * @brief The type Iot cloud user exists.
  * @date Created : 7/13/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 4d492c4..d679b93 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -33,7 +33,7 @@ import com.samsung.commons.service.PolicyService;
  * @brief Policy REST API.
  * @date Created : 7/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 15e843c..e57eb49 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import static org.springframework.http.HttpStatus.NOT_FOUND;
  * @brief The type Policy not found by device uuid and agent uuid.
  * @date Created : 7/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ccba8af..83f923b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -56,7 +56,7 @@ import com.samsung.dsm.report.analyzer.impl.RuleAnalyzer;
  * @brief Report REST API.
  * @date Created : 7/17/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index c0f9c00..2c43570 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -35,7 +35,7 @@ import com.samsung.dsm.rule.parser.RuleConfigParser;
  * @brief REST rule API
  * @date Created : 10/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1ad98b1..9754115 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import com.google.gson.GsonBuilder;
  * @brief The type Json rule config parser.
  * @date Created : 10/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index ddc062d..e91b343 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import com.google.common.base.Objects;
  * @brief The type Rule config.
  * @date Created : 10/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 56fde32..f165d44 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.rule.parser;
  * @brief The interface Rule config parser.
  * @date Created : 10/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 6b8d8a2..95ae9f2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.dsm.security.authentication;
  * @brief Password encoder interface
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index f45a912..9a37cf2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import com.samsung.dsm.security.authentication.PasswordEncoder;
  * @brief Password encoder interface
  * @date Created : 9/1/2016
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index cb42266..2d4094b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import com.samsung.dsm.domain.oauth.OAuthAccessToken;
  * @brief The interface Access token service.
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a694c9e..5f3053c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.service;
  * @brief The interface Login auth code service.
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 8130836..6dd091d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -16,7 +16,7 @@ import org.springframework.security.core.Authentication;
  * @brief Generates auth code
  * @date Created : 7/7/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 8f7b3e2..f11e845 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import org.springframework.stereotype.Service;
  * @brief The implementation Access token service.
  * @date Created : 7/17/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 64bc867..4bb071f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -39,7 +39,7 @@ import com.samsung.dsm.service.OAuth2AuthorizationService;
  * @brief Generates auth code
  * @date Created : 7/7/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 8744fa3..632e37d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.service.impl.auth;
  * @brief The type Login auth code service client credentials.
  * @date Created : 7/7/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 42116fb..6b8afd8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -26,7 +26,7 @@ import com.samsung.dsm.service.OAuth2AuthorizationService;
  * @brief The type Login auth code service.
  * @date Created : 7/7/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d3c28c0..b218b36 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.utils.alive;
  * @brief The interface Alive api sender.
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 9610859..b4f35cd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import static java.lang.String.format;
  * @brief The implementation Alive api sender.
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 03d682a..41258e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.dsm.utils.alive;
  * @brief The type Alive api sender exception.
  * @date Created : 10/30/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index b05b51a..ed649f8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import com.samsung.commons.model.Notification;
  * @brief MQApi class
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 1fe322d..91d57ce 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -27,7 +27,7 @@ import com.samsung.commons.model.Notification;
  * @brief MQApiImpl class
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 37458a1..6f2bcd1 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index e79a98b..e37ce04 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 0a910f3..1e27cc2 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 53953ef..16875e8 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index c5782cd..cf05b47 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index f6a83c7..fa0bd11 100644 (file)
@@ -1,7 +1,7 @@
 <!--
     @author Artem Motchanyi (a.motchanyi@samsung.com)
     @date Created Mar 12, 2017
-    @par In Samsung Ukraine R&D Center (SRK) under a contract between
+    @par In Samsung Ukraine RnD Center (SRK) under a contract between
     @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
     @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
     @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index 4da33ff..a5e929f 100644 (file)
@@ -3,7 +3,7 @@
     @brief DSM Server UI styles.
     @author Artem Motchanyi (a.motchanyi@samsung.com)
     @date Created Mar 12, 2017
-    @par In Samsung Ukraine R&D Center (SRK) under a contract between
+    @par In Samsung Ukraine RnD Center (SRK) under a contract between
     @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
     @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
     @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index e520183..5ff06bc 100644 (file)
@@ -3,7 +3,7 @@
  @brief Event handlers for interactive controls.
  @author Artem Motchanyi (a.motchanyi@samsung.com)
  @date Created Jun 06, 2016
- @par In Samsung Ukraine R&D Center (SRK) under a contract between
+ @par In Samsung Ukraine RnD Center (SRK) under a contract between
  @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
  @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index 37b673c..430eaee 100644 (file)
@@ -3,7 +3,7 @@
     @brief Script for Agents View.
     @author Artem Motchanyi (a.motchanyi@samsung.com)
     @date Created Jul 12, 2017
-    @par In Samsung Ukraine R&D Center (SRK) under a contract between
+    @par In Samsung Ukraine RnD Center (SRK) under a contract between
     @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
     @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
     @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index 98bc29a..5e9277a 100644 (file)
@@ -3,7 +3,7 @@
     @brief Script for Devices View.
     @author Artem Motchanyi (a.motchanyi@samsung.com)
     @date Created Nov 03, 2017
-    @par In Samsung Ukraine R&D Center (SRK) under a contract between
+    @par In Samsung Ukraine RnD Center (SRK) under a contract between
     @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
     @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
     @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index a7cf0fe..c121d43 100644 (file)
@@ -3,7 +3,7 @@
     @brief Script for Device Policies View.
     @author Artem Motchanyi (a.motchanyi@samsung.com)
     @date Created Jul 12, 2017
-    @par In Samsung Ukraine R&D Center (SRK) under a contract between
+    @par In Samsung Ukraine RnD Center (SRK) under a contract between
     @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
     @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
     @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index 97c76b2..a76aa5b 100644 (file)
@@ -3,7 +3,7 @@
     @brief Script with tools functions.
     @author Artem Motchanyi (a.motchanyi@samsung.com)
     @date Created Jul 12, 2017
-    @par In Samsung Ukraine R&D Center (SRK) under a contract between
+    @par In Samsung Ukraine RnD Center (SRK) under a contract between
     @par LLC "Samsung Electronics Ukraine Company" (Kyiv, Ukraine)
     @par and "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
     @par Copyright: (c) 2017 Samsung Electronics Co, Ltd. All rights reserved.
index 9b17e88..57ac02f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 0a72a14..f9d88e6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index ef8ac98..f2f4fda 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 5c61e07..c952d60 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 113192c..35eac0b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 7b54314..d5bdec4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 77861a9..d026022 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 87a4795..79cfb10 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -54,7 +54,7 @@ import com.samsung.dsm.model.view.ViewDevice;
  * @file DashboardPolicyControllerTest.java
  * @brief Tests for DashboardPolicyController.
  * @date Created : 25/08/16
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 8d7ea6b..b459c50 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 2498d91..4c63f41 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index a2c0e29..35e54a5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -32,7 +32,7 @@ import com.samsung.dsm.domain.oauth.OAuthAccessToken;
  * @brief Unit tests for OAuthAccessToken domain class
  * @date Created : 08/06/17
  * @date Modified : 08/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 3ebe1ce..116ba70 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -28,7 +28,7 @@ import org.mockito.MockitoAnnotations;
  * @brief Unit tests for OAuthClientDetails domain class
  * @date Created : 08/06/17
  * @date Modified : 08/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index bd1ba3c..4cee757 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -30,7 +30,7 @@ import org.mockito.MockitoAnnotations;
  * @brief Unit tests for OAuthClientToken domain class
  * @date Created : 08/06/17
  * @date Modified : 08/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 2e2cf37..78d2803 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -30,7 +30,7 @@ import org.mockito.MockitoAnnotations;
  * @brief Unit tests for OAuthCode domain class
  * @date Created : 08/06/17
  * @date Modified : 08/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 396d6e6..5d8b263 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -30,7 +30,7 @@ import org.mockito.MockitoAnnotations;
  * @brief Unit tests for OAuthRefreshToken domain class
  * @date Created : 08/06/17
  * @date Modified : 08/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index c6e6b89..24b98c2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 5320e95..73bbb2a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 27d7726..c1e70bc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 6d3fd42..9135e28 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 33740f9..3e668f3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 4d93df4..ea3cee4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 33bdec5..08e906f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 247f435..a981c62 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 2e1d691..b47f7a6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index f60d760..c95180d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index f74a6ac..70c6839 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -23,7 +23,7 @@ import com.samsung.dsm.policy.parser.PolicyConfigParser;
  * @file JSONParserTest.java
  * @brief Unit -tests for JSON policy parser class
  * @date Created : 15/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index a77afba..3eafe10 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 6053cac..1f3a795 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 9fdbf4d..44cf8d4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 63a45b9..21a3de3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 725d245..e017d62 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 58582a7..a5a3feb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 26b51c7..a5e47f8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 1f5f6bd..d2f3590 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index a71e709..234177d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 2424a04..0080218 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 8f97829..936e731 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -39,7 +39,7 @@ import java.nio.charset.Charset;
  * @brief Unit tests for AccessTokenService
  * @date Created : 08/06/17
  * @date Modified : 08/06/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index 2dffa87..b7b3b4c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -38,7 +38,7 @@ import org.springframework.security.oauth2.provider.code.AuthorizationCodeServic
  * @brief Unit tests for OAuth2AuthorizationServiceImpl service
  * @date Created: 10/07/17
  * @date Modified: 10/07/17
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright: (c) Samsung Electronics Co, Ltd 2016. All rights reserved.
  */
index ce5799b..dbc7ac5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index f6f9310..63b68f9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
index 7969ab4..baeebf4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -31,7 +31,7 @@ import static org.springframework.http.HttpStatus.OK;
  * @brief MQSenderTest class
  * @date Created : 10/27/2017
  * @date Modified : 10/27/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index eedfdfa..9e4f649 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 4a748ed..42c3ce3 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 52508c3..ad13b38 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 9425a24..a83eb1b 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 2a57d01..2a82b08 100644 (file)
@@ -16,7 +16,7 @@ import java.net.URL;
  * @brief Base class for request
  * @date Created : 11/7/2017
  * @date Modified :
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index e006ac6..4c8dd5f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import static com.samsung.servermq.HealthCheck.checkDependencies;
  * @brief The type Server mq.
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index c5e772b..f44c96a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -47,7 +47,7 @@ import kafka.utils.ZkUtils;
  * @brief This class provides a set of APIs to use Kafka consumer APIs for receiving
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index 45b63ea..64b98ef 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -18,7 +18,7 @@ import java.util.Map;
  * @brief Kafka possible error codes
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d0f0d8f..3860aff 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import org.apache.log4j.Logger;
  * @brief This class provides a set of APIs to use Kafka producer APIs for publishing messages
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index cae8925..976a057 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.samsung.servermq.iotivity.extractor.PostDataExtractor;
  * @brief The type Message queue listener
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index d882dc1..50aca7d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.samsung.servermq.utils.Cbor;
  * @brief The type Message queue publisher
  * @date Created : 8/21/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved.
  */
index a0501cb..2c2d87b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -17,7 +17,7 @@ import java.util.Map;
  * @brief The interface Publisher.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 3d29061..6689a32 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.servermq.iotivity.extractor;
  * @brief The interface Post data extractor.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 4e80016..d32788f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -27,7 +27,7 @@ import com.samsung.servermq.utils.MessageQueueUtils;
  * @brief The type Device registration post data extractor.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 58d7b56..5d616a6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -24,7 +24,7 @@ import com.samsung.servermq.utils.MessageQueueUtils;
  * @brief The type Device un registration post data extractor.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index ae2be72..584c877 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -25,7 +25,7 @@ import com.samsung.servermq.utils.rest.DsmApi;
  * @brief The type Policy post data extractor.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 66f1101..04b6efc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -29,7 +29,7 @@ import com.samsung.servermq.iotivity.report.PrepareReport;
  * @brief The type Report post data extractor.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index dba0af6..32ae9ab 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.servermq.iotivity.report;
  * @brief The type Prepare report.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 5c77260..1df8f60 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -40,7 +40,7 @@ import com.samsung.servermq.iotivity.Publisher;
  * @brief The type DSM rest controller.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 3f4c3b1..f6614e5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -22,7 +22,7 @@ import com.fasterxml.jackson.dataformat.cbor.CBORFactory;
  * @brief The type Cbor.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 11d11ab..86a2a0a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -14,7 +14,7 @@ package com.samsung.servermq.utils;
  * @brief List keys for extracting data from clouds messages
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 613df2c..be858ff 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -20,7 +20,7 @@ import org.apache.log4j.Logger;
  * @brief This class provides a set of APIs of utilities for MessageQueue.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 2de537d..425a48b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -15,7 +15,7 @@ package com.samsung.servermq.utils.rest;
  * @brief The interface Server sender.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index aee03f2..93da37f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * In Samsung Ukraine R&D Center (SRK under a contract between)
+ * In Samsung Ukraine RnD Center (SRK under a contract between)
  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
  */
@@ -21,7 +21,7 @@ import static java.lang.String.format;
  * @brief The type DSM api implementation.
  * @date Created : 7/6/2017
  * @date Modified : 11/2/2017
- * @copyright In Samsung Ukraine R&D Center (SRK under a contract between)
+ * @copyright In Samsung Ukraine RnD Center (SRK under a contract between)
  * @par LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  * @par Copyright : (c) Samsung Electronics Co, Ltd 2017. All rights reserved
  */
index 3646452..73297d3 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index acf8657..bde9606 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index c87bc3f..48b5a17 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 9c03d43..6591f63 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 6db38a6..44e2331 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index dda999c..ae17436 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index f68ff9f..fe8b49e 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index f10eaed..46f1687 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
index 41258e3..29ce18d 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->
                     <encoding>${project.build.sourceEncoding}</encoding>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>3.0.0-M1</version>
+                <configuration>
+                    <tags>
+                        <tag>
+                            <name>file</name>
+                            <placement>X</placement>
+                        </tag>
+                        <tag>
+                            <name>brief</name>
+                            <placement>X</placement>
+                        </tag>
+                        <tag>
+                            <name>date</name>
+                            <placement>X</placement>
+                        </tag>
+                        <tag>
+                            <name>copyright</name>
+                            <placement>X</placement>
+                        </tag>
+                        <tag>
+                            <name>par</name>
+                            <placement>X</placement>
+                        </tag>
+                    </tags>
+                </configuration>
+            </plugin>
         </plugins>
 
         <pluginManagement>
index 5b3d87e..c293c22 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- In Samsung Ukraine R&D Center (SRK under a contract between)
+ In Samsung Ukraine RnD Center (SRK under a contract between)
  LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
  Copyright (C) 2017 Samsung Electronics Co., Ltd. All rights reserved.
 -->