@Path(value="/mailboxes/{domainUid}/identity/{mboxUid}")
public interface IMailboxIdentity
extends IRestoreCrudSupport<Identity>
| Modifier and Type | Method and Description |
|---|---|
void |
create(java.lang.String id,
Identity identity)
Create an
Identity. |
void |
delete(java.lang.String id)
Delete an existing
Identity. |
Identity |
get(java.lang.String id)
Retrieve an existing
Identity |
java.util.List<IdentityDescription> |
getIdentities()
Retrieve mailbox
Identitys |
java.util.List<IdentityDescription> |
getPossibleIdentities()
Retrieve all possible mailbox
Identitys (for each email defined in
mailbox even if no identies are defined ( if identity doesnt exists for one
mail, IdentityDescription.id will be null |
void |
update(java.lang.String id,
Identity identity)
Update an existing
Identity. |
restore@PUT
@Path(value="{uid}")
void create(@PathParam(value="uid")
java.lang.String id,
Identity identity)
throws ServerFault
Identity. An Identity can be used by a user to set
the from header in a mail and add a signature.id - identity - ServerFault@POST
@Path(value="{uid}")
void update(@PathParam(value="uid")
java.lang.String id,
Identity identity)
throws ServerFault
Identity. An Identity can be used by a
user to set the from header in a mail and add a signature.id - identity - ServerFault@DELETE
@Path(value="{uid}")
void delete(@PathParam(value="uid")
java.lang.String id)
throws ServerFault
Identity.delete in interface IRestoreCrudSupport<Identity>id - ServerFault@GET
@Path(value="{uid}")
Identity get(@PathParam(value="uid")
java.lang.String id)
throws ServerFault
Identityget in interface IRestoreSupport<Identity>id - ServerFault@GET java.util.List<IdentityDescription> getIdentities() throws ServerFault
IdentitysServerFault@GET @Path(value="_possible") java.util.List<IdentityDescription> getPossibleIdentities() throws ServerFault
Identitys (for each email defined in
mailbox even if no identies are defined ( if identity doesnt exists for one
mail, IdentityDescription.id will be nullServerFaultCopyright © 2024. All Rights Reserved.