Add header missing license header 95/2095/1 master
authorss412g <shuky.har-noy@intl.att.com>
Mon, 23 Dec 2019 09:52:12 +0000 (11:52 +0200)
committerss412g <shuky.har-noy@intl.att.com>
Mon, 23 Dec 2019 09:52:17 +0000 (11:52 +0200)
Change-Id: Ib1df5d3f75870d85a395d78563c1bfa3d8d6ed3c
Signed-off-by: ss412g <shuky.har-noy@intl.att.com>
30 files changed:
RSM/converters/resource_status_failure_unpacker.go
RSM/converters/resource_status_failure_unpacker_test.go
RSM/converters/resource_status_response_unpacker.go
RSM/converters/resource_status_response_unpacker_test.go
RSM/enums/constants.go
RSM/enums/rsm_action.go
RSM/handlers/httpmsghandlers/resource_status_request_handler.go
RSM/handlers/httpmsghandlers/resource_status_request_handler_test.go
RSM/handlers/rmrmsghandlers/resource_status_response_handler_test.go
RSM/mocks/controller_mock.go
RSM/mocks/resource_status_failure_converter_mock.go
RSM/mocks/resource_status_response_converter_mock.go
RSM/mocks/resource_status_service_mock.go
RSM/mocks/rmr_messenger_mock.go
RSM/mocks/root_controller_mock.go
RSM/mocks/rsm_reader_mock.go
RSM/models/error_response.go
RSM/models/resource_status_payload.go
RSM/models/resource_status_request.go
RSM/models/resource_status_response.go
RSM/models/response_interface.go
RSM/models/rsm_general_configuration.go
RSM/models/rsm_ran_info.go
RSM/rsmdb/rsm_reader.go
RSM/rsmdb/rsm_reader_test.go
RSM/rsmdb/rsm_writer.go
RSM/rsmdb/rsm_writer_test.go
RSM/rsmerrors/rsm_error.go
RSM/services/resource_status_service.go
RSM/services/resource_status_service_test.go

index d76f5f8..d329588 100644 (file)
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package converters
 
-// #cgo CFLAGS: -I../asn1codec/inc/ -I../asn1codec/e2ap_engine/
-// #cgo LDFLAGS: -L ../asn1codec/lib/ -L../asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
+// #cgo CFLAGS: -I../3rdparty/asn1codec/inc/ -I../3rdparty/asn1codec/e2ap_engine/
+// #cgo LDFLAGS: -L ../3rdparty/asn1codec/lib/ -L../3rdparty/asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
 // #include <asn1codec_utils.h>
 // #include <resource_status_response_wrapper.h>
 import "C"
index fbbdf3b..62f1cf6 100644 (file)
  *   limitations under the License.
  *
  *******************************************************************************/
+
+/*
+* This source code is part of the near-RT RIC (RAN Intelligent Controller)
+* platform project (RICP).
+*/
+
 package converters
 
 import (
index b50251b..be81a1c 100644 (file)
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package converters
 
-// #cgo CFLAGS: -I../asn1codec/inc/ -I../asn1codec/e2ap_engine/
-// #cgo LDFLAGS: -L ../asn1codec/lib/ -L../asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
+// #cgo CFLAGS: -I../3rdparty/asn1codec/inc/ -I../3rdparty/asn1codec/e2ap_engine/
+// #cgo LDFLAGS: -L ../3rdparty/asn1codec/lib/ -L../3rdparty/asn1codec/e2ap_engine/ -le2ap_codec -lasncodec
 // #include <asn1codec_utils.h>
 // #include <resource_status_response_wrapper.h>
 import "C"
index 114afd4..9858eb6 100644 (file)
  *   limitations under the License.
  *
  *******************************************************************************/
+
+/*
+* This source code is part of the near-RT RIC (RAN Intelligent Controller)
+* platform project (RICP).
+*/
+
 package converters
 
 import (
index 4e5d618..3a79537 100644 (file)
 //
 
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
+
 package enums
 
 const Enb1MeasurementId int64 = 1
index ab0e1f1..4a4a504 100644 (file)
 //
 
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
+
 package enums
 
 type RsmAction string
index 4d0575f..6b6346d 100644 (file)
 // See the License for the specific language governing permissions and
 // limitations under the License.
 //
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package httpmsghandlers
 
 import (
index 0dbc012..67c99fe 100644 (file)
 // See the License for the specific language governing permissions and
 // limitations under the License.
 //
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package httpmsghandlers_test
 
 import (
index 2739be6..e4ea107 100644 (file)
 // limitations under the License.
 //
 
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package rmrmsghandlers
 
 import (
index 36cf4a6..21360ef 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
index 2722ffe..01a24d4 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
index 674d244..9869b18 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
index f7ff2be..d285929 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
index e9b4f1a..5b8e24f 100644 (file)
@@ -17,7 +17,6 @@
 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
 //  platform project (RICP).
 
-
 package mocks
 
 import (
index 46bd86f..2a7e10d 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
index 4ade9cd..a896bca 100644 (file)
 // See the License for the specific language governing permissions and
 // limitations under the License.
 //
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package mocks
 
 import (
index b598bd6..2395408 100644 (file)
@@ -17,8 +17,6 @@
 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
 //  platform project (RICP).
 
-//
-
 package models
 
 type ErrorResponse struct {
index bca52dc..05ca4a9 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package models
 
 import (
index e449476..4bfd082 100644 (file)
 // limitations under the License.
 //
 
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package models
 
 type ResourceStatusRequest struct {
index dae459e..7065e21 100644 (file)
 // limitations under the License.
 //
 
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package models
 
 import (
index 531fbbd..ed4e382 100644 (file)
@@ -17,7 +17,6 @@
 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
 //  platform project (RICP).
 
-
 package models
 
 type IResponse interface {
index d892d81..3721887 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package models
 
 import "rsm/enums"
index b67b983..76e4d30 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package models
 
 import (
index 852346b..91246eb 100644 (file)
@@ -14,6 +14,9 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package rsmdb
 
 import (
index e1703df..24ca2f1 100644 (file)
  *   limitations under the License.
  *
  *******************************************************************************/
+
+/*
+* This source code is part of the near-RT RIC (RAN Intelligent Controller)
+* platform project (RICP).
+*/
+
 package rsmdb
 
 import (
index 58c56c1..596c9fe 100644 (file)
@@ -14,6 +14,9 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package rsmdb
 
 import (
index 627c2f1..19bde4e 100644 (file)
  *   limitations under the License.
  *
  *******************************************************************************/
+
+/*
+* This source code is part of the near-RT RIC (RAN Intelligent Controller)
+* platform project (RICP).
+*/
+
 package rsmdb
 
 import (
index e4ca044..2bbccfa 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package rsmerrors
 
 import "fmt"
index 6f0df7e..cbc0465 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package services
 
 import (
index 9b4e962..ca8274c 100644 (file)
@@ -15,6 +15,9 @@
 // limitations under the License.
 //
 
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 package services
 
 import (