@Path(value="/mailshares/{domainUid}") public interface IMailshare extends IDirEntryPhotoSupport
Modifier and Type | Method and Description |
---|---|
java.util.List<ItemValue<Mailshare>> |
allComplete()
Fetches all Mailshares
|
void |
create(java.lang.String uid,
Mailshare mailshare)
Creates a new
Mailshare entry. |
TaskRef |
delete(java.lang.String uid)
Delete
Mailshare entry |
ItemValue<Mailshare> |
getComplete(java.lang.String uid)
Fetch a
Mailshare from its unique uid |
void |
update(java.lang.String uid,
Mailshare mailshare)
Modifies an existing
Mailshare entry. |
deletePhoto, getIcon, getPhoto, setPhoto
@PUT @Path(value="{uid}") void create(@PathParam(value="uid") java.lang.String uid, Mailshare mailshare) throws ServerFault
Mailshare
entry.uid
- uid of the entrymailshare
- value of the entryServerFault
@POST @Path(value="{uid}") void update(@PathParam(value="uid") java.lang.String uid, Mailshare mailshare) throws ServerFault
Mailshare
entry.uid
- uid of the entrymailshare
- value of the entryServerFault
@GET @Path(value="{uid}/complete") ItemValue<Mailshare> getComplete(@PathParam(value="uid") java.lang.String uid) throws ServerFault
Mailshare
from its unique uiduid
- ItemValue
ServerFault
@GET @Path(value="_complete") java.util.List<ItemValue<Mailshare>> allComplete() throws ServerFault
ServerFault
@DELETE @Path(value="{uid}") TaskRef delete(@PathParam(value="uid") java.lang.String uid) throws ServerFault
Mailshare
entryuid
- ServerFault
Copyright © 2021. All Rights Reserved.