Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d8e5997 authored by Nihar Thakkar's avatar Nihar Thakkar Committed by Sumit Pundir
Browse files

Add author, create/modify licence

parent e3f5d653
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,10 @@ import java.io.IOException
import java.io.StringWriter
import java.util.logging.Logger

/**
 * @author Nihar Thakkar and others
 */

class DavAddressBook @JvmOverloads constructor(
        httpClient: OkHttpClient,
        location: HttpUrl,
+4 −0
Original line number Diff line number Diff line
@@ -15,6 +15,10 @@ import java.text.SimpleDateFormat
import java.util.*
import java.util.logging.Logger

/**
 * @author Nihar Thakkar and others
 */

class DavCalendar @JvmOverloads constructor(
        httpClient: OkHttpClient,
        location: HttpUrl,
+2 −0
Original line number Diff line number Diff line
@@ -15,7 +15,9 @@ import java.util.logging.Logger

/**
 * Represents a WebDAV collection.
 * @author Nihar Thakkar and others
 */

open class DavCollection @JvmOverloads constructor(
        httpClient: OkHttpClient,
        location: HttpUrl,
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ import java.util.logging.Logger
 * @param httpClient    [OkHttpClient] to access this object (must not follow redirects)
 * @param location      location of the WebDAV resource
 * @param log           will be used for logging
 * @author Nihar Thakkar and others
 */
open class DavResource @JvmOverloads constructor(
        val httpClient: OkHttpClient,
+4 −0
Original line number Diff line number Diff line
@@ -11,6 +11,10 @@ import org.xmlpull.v1.XmlPullParserException
import java.util.*
import java.util.logging.Level

/**
 * @author Nihar Thakkar and others
 */

object PropertyRegistry {

    private val factories = mutableMapOf<Property.Name, PropertyFactory>()