/** * Copyright (C) 2010 MediaShelf <http://www.yourmediashelf.com/> * * This file is part of fedora-client. * * fedora-client is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * fedora-client is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with fedora-client. If not, see <http://www.gnu.org/licenses/>. */ package com.yourmediashelf.fedora.client.request; import static com.yourmediashelf.fedora.util.DateUtility.getXSDDateTime; import java.util.Date; import org.joda.time.DateTime; import com.sun.jersey.api.client.ClientResponse; import com.sun.jersey.api.client.WebResource; import com.yourmediashelf.fedora.client.FedoraClient; import com.yourmediashelf.fedora.client.FedoraClientException; import com.yourmediashelf.fedora.client.response.FedoraResponse; import com.yourmediashelf.fedora.client.response.FedoraResponseImpl; /** * Builder for the ModifyObject method. * * @author Edwin Shin */ public class ModifyObject extends FedoraRequest<ModifyObject> { private final String pid; public ModifyObject(String pid) { this.pid = pid; } public ModifyObject label(String label) { addQueryParam("label", label); return this; } public ModifyObject lastModifiedDate(DateTime lastModifiedDate) { addQueryParam("lastModifiedDate", getXSDDateTime(lastModifiedDate)); return this; } public ModifyObject lastModifiedDate(Date lastModifiedDate) { addQueryParam("lastModifiedDate", getXSDDateTime(lastModifiedDate)); return this; } /** * <p>If provided, the server will use the supplied lastModifedDate to * prevent concurrent modifications, only performing the request if the * object has not been modified since the request-provided * lastModifiedDate. Otherwise, the request will fail with an HTTP 409 * Conflict.</p> * * <p>Typical usage would be to get the lastModifiedDate of an object * before modification, and then to pass that date as part of the subsequent * modify request, which would then only succeed if the object has not * been already modified since.</p> * * <p>Supported against Fedora 3.4.0 and later (with earlier versions, this * parameter is ignored).</p> * * @param lastModifiedDate an xsd:dateTime string, e.g. 2001-12-31T12:50:01.000Z * @return this builder */ public ModifyObject lastModifiedDate(String lastModifiedDate) { addQueryParam("lastModifiedDate", lastModifiedDate); return this; } public ModifyObject logMessage(String logMessage) { addQueryParam("logMessage", logMessage); return this; } public ModifyObject ownerId(String ownerId) { addQueryParam("ownerId", ownerId); return this; } public ModifyObject state(String state) { addQueryParam("state", state); return this; } @Override public FedoraResponse execute(FedoraClient fedora) throws FedoraClientException { WebResource wr = resource(fedora); String path = String.format("objects/%s", pid); ClientResponse cr = wr.path(path).queryParams(getQueryParams()).put( ClientResponse.class); return new FedoraResponseImpl(cr); } }