public interface IDirEntryPhotoSupport
Modifier and Type | Method and Description |
---|---|
void |
deletePhoto(java.lang.String uid) |
byte[] |
getIcon(java.lang.String uid) |
byte[] |
getPhoto(java.lang.String uid) |
void |
setPhoto(java.lang.String uid,
byte[] photo) |
@POST @Path(value="{uid}/photo") @Consumes(value="image/png") void setPhoto(@PathParam(value="uid") java.lang.String uid, byte[] photo) throws ServerFault
ServerFault
@GET @Path(value="{uid}/photo") @Produces(value="image/png") byte[] getPhoto(@PathParam(value="uid") java.lang.String uid) throws ServerFault
ServerFault
@DELETE @Path(value="{uid}/photo") void deletePhoto(@PathParam(value="uid") java.lang.String uid) throws ServerFault
ServerFault
@GET @Path(value="{uid}/icon") @Produces(value="image/png") byte[] getIcon(@PathParam(value="uid") java.lang.String uid) throws ServerFault
ServerFault
Copyright © 2021. All Rights Reserved.