Hi,
I am getting request with a new element like below:
<CD:addressbook-description xmlns:CD="urn:ietf:params:xml:ns:carddav"/>
<current-user-privilege-set class="java.util.LinkedList"/>
I was able to get information about <current-user-privilege-set>
, but not class="java.util.LinkedList"/,
What exactly class attribute is trying to achieve here.
Please find my response xml in this case:
HTTP/1.1 207 Multi-Status
Date: Thu Aug 20 21:53:04 IST 2015
Server: Test
DAV:1, 3, extended=mkcol, addressbook
Content-Length: 659
Content-Type: text/xml; charset=UTF-8
<?xml version="1.0" encoding="utf-8"?><d:multistatus xmlns:d="DAV:" xmlns:cal="urn:ietf:params:xml:ns:caldav" xmlns:card="urn:ietf:params:xml:ns:carddav"><d:response><d:href>/bt/admin/</d:href><d:propstat><d:prop><CD:addressbook-description xmlns:CD="urn:ietf:params:xml:ns:carddav">My address Book</CD:addressbook-description><d:current-user-privilege-set class="java.util.LinkedList"><d:privilege><d:read></d:read></d:privilege></d:current-user-privilege-set><d:displayname>My address Book</d:displayname><d:resourcetype><d:collection>abc</d:collection></d:resourcetype></d:prop><d:status>HTTP/1.1 200 OK</d:status></d:propstat></d:response></d:multistatus>
Thank you,
Unni