本文整理匯總了Java中javax.ws.rs.PATCH類的典型用法代碼示例。如果您正苦於以下問題:Java PATCH類的具體用法?Java PATCH怎麽用?Java PATCH使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
PATCH類屬於javax.ws.rs包,在下文中一共展示了PATCH類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createObject
import javax.ws.rs.PATCH; //導入依賴的package包/類
/**
* Update an object using SPARQL-UPDATE
*
* @param requestBodyStream SPARQL-update request
* @return
*/
@PATCH
@Consumes({WebContent.contentTypeSPARQLUpdate})
public Response createObject(@ContentLocation final InputStream requestBodyStream) {
// TODO: Parse and persist the changes indicated in the sparql-update
return noContent().build();
}
示例2: update
import javax.ws.rs.PATCH; //導入依賴的package包/類
/**
* Self-updates user.
*
* @param patch modification to be applied to self
* @return Response object featuring the updated user - ProvisioningResult as Entity
*/
@ApiOperation(value = "", authorizations = {
@Authorization(value = "BasicAuthentication")
, @Authorization(value = "Bearer") })
@PATCH
@Path("{key}")
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
Response update(@NotNull UserPatch patch);
示例3: handlePatchDatastore
import javax.ws.rs.PATCH; //導入依賴的package包/類
/**
* Handles a RESTCONF PATCH operation against the entire data store.
* If the PATCH request succeeds, a "200 OK" status-line is returned if
* there is a message-body, and "204 No Content" is returned if no
* response message-body is sent.
*
* @param stream Input JSON object
* @return HTTP response
*/
@PATCH
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@Path("data")
public Response handlePatchDatastore(InputStream stream) {
log.debug("handlePatchDatastore");
return handlePatchRequest(null, stream);
}
示例4: update
import javax.ws.rs.PATCH; //導入依賴的package包/類
/**
* Updates group matching the provided key.
*
* @param groupPatch modification to be applied to group matching the provided key
* @return Response object featuring the updated group enriched with propagation status information
* - ProvisioningResult as Entity
*/
@PATCH
@Path("{key}")
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
Response update(@NotNull GroupPatch groupPatch);
示例5: update
import javax.ws.rs.PATCH; //導入依賴的package包/類
/**
* Updates any object matching the provided key.
*
* @param anyObjectPatch modification to be applied to any object matching the provided key
* @return Response object featuring the updated any object enriched with propagation status information
* - ProvisioningResult as Entity
*/
@PATCH
@Path("{key}")
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
Response update(@NotNull AnyObjectPatch anyObjectPatch);
示例6: update
import javax.ws.rs.PATCH; //導入依賴的package包/類
/**
* Updates user matching the provided key.
*
* @param userPatch modification to be applied to user matching the provided key
* @return Response object featuring the updated user enriched with propagation status information
* - ProvisioningResult as Entity
*/
@PATCH
@Path("{key}")
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
Response update(@NotNull UserPatch userPatch);