From f86df4ca2371211f95735463407de38597f3f622 Mon Sep 17 00:00:00 2001 From: Arnau Mora Gras Date: Thu, 21 Nov 2024 11:12:37 +0100 Subject: [PATCH] Replaced namespaces in docs Signed-off-by: Arnau Mora Gras --- src/main/kotlin/at/bitfire/dav4jvm/property/push/AuthSecret.kt | 2 +- .../kotlin/at/bitfire/dav4jvm/property/push/ClientPublicKey.kt | 2 +- src/main/kotlin/at/bitfire/dav4jvm/property/push/PushMessage.kt | 2 +- .../kotlin/at/bitfire/dav4jvm/property/push/PushPublicKey.kt | 2 -- .../kotlin/at/bitfire/dav4jvm/property/push/PushRegister.kt | 2 +- .../kotlin/at/bitfire/dav4jvm/property/push/PushResource.kt | 2 +- .../kotlin/at/bitfire/dav4jvm/property/push/PushTransports.kt | 2 +- .../kotlin/at/bitfire/dav4jvm/property/push/ServerPublicKey.kt | 2 +- .../kotlin/at/bitfire/dav4jvm/property/push/Subscription.kt | 2 +- src/main/kotlin/at/bitfire/dav4jvm/property/push/Topic.kt | 2 +- src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPush.kt | 2 +- .../at/bitfire/dav4jvm/property/push/WebPushSubscription.kt | 2 +- 12 files changed, 11 insertions(+), 13 deletions(-) diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/AuthSecret.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/AuthSecret.kt index c1f1808..d565938 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/AuthSecret.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/AuthSecret.kt @@ -12,7 +12,7 @@ import at.bitfire.dav4jvm.XmlReader import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}auth-secret` property. + * Represents a [NS_WEBDAV_PUSH]`:auth-secret` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/ClientPublicKey.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/ClientPublicKey.kt index c20bc7d..9f97d59 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/ClientPublicKey.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/ClientPublicKey.kt @@ -5,7 +5,7 @@ import at.bitfire.dav4jvm.PropertyFactory import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}client-public-key` property. + * Represents a [NS_WEBDAV_PUSH]`:client-public-key` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushMessage.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushMessage.kt index 40af31b..ffec041 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushMessage.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushMessage.kt @@ -13,7 +13,7 @@ import at.bitfire.dav4jvm.XmlReader import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}push-message` property. + * Represents a [NS_WEBDAV_PUSH]`:push-message` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushPublicKey.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushPublicKey.kt index 9acbe5d..a3d7a0c 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushPublicKey.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushPublicKey.kt @@ -19,8 +19,6 @@ abstract class PushPublicKey: Property { companion object { @JvmField val NAME = Property.Name(NS_WEBDAV_PUSH, "server-public-key") - - val PROP_TYPE = Property.Name(NS_WEBDAV_PUSH, "type") } var type: String? = null diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushRegister.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushRegister.kt index 63f04a3..027ac7d 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushRegister.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushRegister.kt @@ -15,7 +15,7 @@ import org.xmlpull.v1.XmlPullParser import java.time.Instant /** - * Represents a `{DAV:Push}push-register` property. + * Represents a [NS_WEBDAV_PUSH]`:push-register` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushResource.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushResource.kt index d330643..b0fc83f 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushResource.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushResource.kt @@ -12,7 +12,7 @@ import at.bitfire.dav4jvm.XmlReader import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}push-resource` property. + * Represents a [NS_WEBDAV_PUSH]`:push-resource` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushTransports.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushTransports.kt index 9452c77..5e7ef1e 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushTransports.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/PushTransports.kt @@ -13,7 +13,7 @@ import at.bitfire.dav4jvm.XmlUtils.propertyName import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}push-transports` property. + * Represents a [NS_WEBDAV_PUSH]`:push-transports` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/ServerPublicKey.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/ServerPublicKey.kt index db3ccdf..44694e1 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/ServerPublicKey.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/ServerPublicKey.kt @@ -3,7 +3,7 @@ package at.bitfire.dav4jvm.property.push import at.bitfire.dav4jvm.Property /** - * Represents a `{DAV:Push}server-public-key` property. + * Represents a [NS_WEBDAV_PUSH]`:server-public-key` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/Subscription.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/Subscription.kt index 5024c5c..11186c6 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/Subscription.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/Subscription.kt @@ -12,7 +12,7 @@ import at.bitfire.dav4jvm.XmlReader import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}subscription` property. + * Represents a [NS_WEBDAV_PUSH]`:subscription` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/Topic.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/Topic.kt index 8b54fbe..ee3e8bc 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/Topic.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/Topic.kt @@ -12,7 +12,7 @@ import at.bitfire.dav4jvm.XmlReader import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}topic` property. + * Represents a [NS_WEBDAV_PUSH]`:topic` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPush.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPush.kt index 5f2eae8..88d8c06 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPush.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPush.kt @@ -5,7 +5,7 @@ import at.bitfire.dav4jvm.PropertyFactory import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}web-push` property. + * Represents a [NS_WEBDAV_PUSH]`:web-push` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */ diff --git a/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPushSubscription.kt b/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPushSubscription.kt index 8b28be9..a0f9b9f 100644 --- a/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPushSubscription.kt +++ b/src/main/kotlin/at/bitfire/dav4jvm/property/push/WebPushSubscription.kt @@ -13,7 +13,7 @@ import at.bitfire.dav4jvm.XmlUtils.propertyName import org.xmlpull.v1.XmlPullParser /** - * Represents a `{DAV:Push}web-push-subscription` property. + * Represents a [NS_WEBDAV_PUSH]`:web-push-subscription` property. * * Experimental! See https://github.com/bitfireAT/webdav-push/ */