-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/development'
- Loading branch information
Showing
19 changed files
with
449 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
app/src/main/java/com/fivegmag/a5gmscommonlibrary/consumptionReporting/ConsumptionRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.fivegmag.a5gmscommonlibrary.consumptionReporting | ||
|
||
import android.os.Parcelable | ||
import kotlinx.parcelize.Parcelize | ||
|
||
@Parcelize | ||
data class ConsumptionRequest( | ||
var accessReporting : Boolean? = false, | ||
var locationReporting : Boolean? = false | ||
) : Parcelable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
app/src/main/java/com/fivegmag/a5gmscommonlibrary/models/MessageModels.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
app/src/main/java/com/fivegmag/a5gmscommonlibrary/qoeMetricsReporting/AverageThroughput.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
License: 5G-MAG Public License (v1.0) | ||
Author: Daniel Silhavy | ||
Copyright: (C) 2023 Fraunhofer FOKUS | ||
For full license terms please see the LICENSE file distributed with this | ||
program. If this file is missing then the license can be retrieved from | ||
https://drive.google.com/file/d/1cinCiA778IErENZ3JN52VFW-1ffHpx7Z/view | ||
*/ | ||
|
||
package com.fivegmag.a5gmscommonlibrary.qoeMetricsReporting | ||
|
||
data class AvgThroughput( | ||
val numbytes: Integer, | ||
val activitytime: Integer, | ||
val t : String, | ||
val duration: Integer, | ||
val accessbearer: String, | ||
val inactivitytype: InactivityType | ||
) | ||
|
||
enum class InactivityType { | ||
USER_REQUEST, | ||
CLIENT_MEASURE, | ||
ERROR | ||
} |
26 changes: 26 additions & 0 deletions
26
app/src/main/java/com/fivegmag/a5gmscommonlibrary/qoeMetricsReporting/BufferLevel.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
License: 5G-MAG Public License (v1.0) | ||
Author: Daniel Silhavy | ||
Copyright: (C) 2023 Fraunhofer FOKUS | ||
For full license terms please see the LICENSE file distributed with this | ||
program. If this file is missing then the license can be retrieved from | ||
https://drive.google.com/file/d/1cinCiA778IErENZ3JN52VFW-1ffHpx7Z/view | ||
*/ | ||
|
||
package com.fivegmag.a5gmscommonlibrary.qoeMetricsReporting | ||
|
||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper | ||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty | ||
|
||
data class BufferLevel( | ||
@field:JacksonXmlProperty(localName = "BufferLevelEntry") | ||
@field:JacksonXmlElementWrapper(useWrapping = false) | ||
val entries: ArrayList<BufferLevelEntry> | ||
) | ||
|
||
data class BufferLevelEntry( | ||
@field:JacksonXmlProperty(isAttribute = true) | ||
val t: String? = null, | ||
@field:JacksonXmlProperty(isAttribute = true) | ||
val level: Int = 0 | ||
) |
Oops, something went wrong.