Interface IMapiPCLCache


@Path("/mapi_pclcache") public interface IMapiPCLCache
  • Method Details

    • get

      @GET @Path("entry/{replicaGuid}/{globalCounter}") MapiPCLCacheEntry get(@PathParam("replicaGuid") String replicaGuid, @PathParam("globalCounter") Long globalCounter)
    • store

      @PUT @Path("entry/{replicaGuid}/{globalCounter}") void store(@PathParam("replicaGuid") String replicaGuid, @PathParam("globalCounter") Long globalCounter, MapiPCLCacheEntry entry)
    • contains

      @GET @Path("entry/contains/{replicaGuid}/{globalCounter}") boolean contains(@PathParam("replicaGuid") String replicaGuid, @PathParam("globalCounter") Long globalCounter)
    • delete

      @DELETE @Path("entry/{replicaGuid}/{globalCounter}") void delete(@PathParam("replicaGuid") String replicaGuid, @PathParam("globalCounter") Long globalCounter)