|
|
|
|
@ -27,10 +27,6 @@ import kotlin.collections.ArrayList |
|
|
|
|
open class Session : RealmObject(), SessionInterface, RowRepresentableDataSource, |
|
|
|
|
RowEditable, RowRepresentable, ObjectSavable { |
|
|
|
|
|
|
|
|
|
override fun uniqueIdentifier(): String { |
|
|
|
|
return id |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@PrimaryKey |
|
|
|
|
var id = UUID.randomUUID().toString() |
|
|
|
|
|
|
|
|
|
@ -254,6 +250,10 @@ open class Session : RealmObject(), SessionInterface, RowRepresentableDataSource |
|
|
|
|
return 0.0 |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
override fun uniqueIdentifier(): String { |
|
|
|
|
return this.id |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
override fun getDisplayName(): String { |
|
|
|
|
return "session ${this.creationDate}" |
|
|
|
|
} |
|
|
|
|
|