Commit e07c542a authored by Simon Pastor's avatar Simon Pastor
Browse files

pr review comments

parent 1019a22f
Loading
Loading
Loading
Loading
−16 KiB

File deleted.

−16 KiB

File deleted.

−16 KiB

File deleted.

+0 −89
Original line number Diff line number Diff line
/*
 * Copyright (c) 2020  InterDigital Communications, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the \"License\");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an \"AS IS\" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * AdvantEDGE Location Service REST API
 *
 * Location Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC013 Location API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/013/01.01.01_60/gs_mec013v010101p.pdf) <p>The API is based on the Open Mobile Alliance's specification RESTful Network API for Zonal Presence <p>[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt) <p>**Micro-service**<br>[meep-loc-serv](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-loc-serv) <p>**Type & Usage**<br>Edge Service used by edge applications that want to get information about Users (UE) and Zone locations <p>**Details**<br>API details available at _your-AdvantEDGE-ip-address/api_
 *
 * API version: 1.1.1
 * Contact: AdvantEDGE@InterDigital.com
 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
 */

package server

import (
	"net/http"
)

func UserTrackingSubDelById(w http.ResponseWriter, r *http.Request) {
	userTrackingSubDelById(w, r)
}

func UserTrackingSubGet(w http.ResponseWriter, r *http.Request) {
	userTrackingSubGet(w, r)
}

func UserTrackingSubGetById(w http.ResponseWriter, r *http.Request) {
	userTrackingSubGetById(w, r)
}

func UserTrackingSubPost(w http.ResponseWriter, r *http.Request) {
	userTrackingSubPost(w, r)
}

func UserTrackingSubPutById(w http.ResponseWriter, r *http.Request) {
	userTrackingSubPutById(w, r)
}

func ZonalTrafficSubDelById(w http.ResponseWriter, r *http.Request) {
	zonalTrafficSubDelById(w, r)
}

func ZonalTrafficSubGet(w http.ResponseWriter, r *http.Request) {
	zonalTrafficSubGet(w, r)
}

func ZonalTrafficSubGetById(w http.ResponseWriter, r *http.Request) {
	zonalTrafficSubGetById(w, r)
}

func ZonalTrafficSubPost(w http.ResponseWriter, r *http.Request) {
	zonalTrafficSubPost(w, r)
}

func ZonalTrafficSubPutById(w http.ResponseWriter, r *http.Request) {
	zonalTrafficSubPutById(w, r)
}

func ZoneStatusDelById(w http.ResponseWriter, r *http.Request) {
	zoneStatusDelById(w, r)
}

func ZoneStatusGet(w http.ResponseWriter, r *http.Request) {
	zoneStatusGet(w, r)
}

func ZoneStatusGetById(w http.ResponseWriter, r *http.Request) {
	zoneStatusGetById(w, r)
}

func ZoneStatusPost(w http.ResponseWriter, r *http.Request) {
	zoneStatusPost(w, r)
}

func ZoneStatusPutById(w http.ResponseWriter, r *http.Request) {
	zoneStatusPutById(w, r)
}
+0 −37
Original line number Diff line number Diff line
/*
 * Copyright (c) 2020  InterDigital Communications, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the \"License\");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an \"AS IS\" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * AdvantEDGE Location Service REST API
 *
 * Location Service is AdvantEDGE's implementation of [ETSI MEC ISG MEC013 Location API](http://www.etsi.org/deliver/etsi_gs/MEC/001_099/013/01.01.01_60/gs_mec013v010101p.pdf) <p>The API is based on the Open Mobile Alliance's specification RESTful Network API for Zonal Presence <p>[Copyright (c) ETSI 2017](https://forge.etsi.org/etsi-forge-copyright-notice.txt) <p>**Micro-service**<br>[meep-loc-serv](https://github.com/InterDigitalInc/AdvantEDGE/tree/master/go-apps/meep-loc-serv) <p>**Type & Usage**<br>Edge Service used by edge applications that want to get information about Users (UE) and Zone locations <p>**Details**<br>API details available at _your-AdvantEDGE-ip-address/api_
 *
 * API version: 1.1.1
 * Contact: AdvantEDGE@InterDigital.com
 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
 */

package server

import (
	"net/http"
)

func UsersGet(w http.ResponseWriter, r *http.Request) {
	usersGet(w, r)
}

func UsersGetById(w http.ResponseWriter, r *http.Request) {
	usersGetById(w, r)
}
Loading