com.urbanairship.api.schedule.ScheduleDeleteRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
package com.urbanairship.api.schedule;
import com.google.common.base.Preconditions;
import com.google.common.net.HttpHeaders;
import com.urbanairship.api.client.Request;
import com.urbanairship.api.client.RequestUtils;
import com.urbanairship.api.client.ResponseParser;
import com.urbanairship.api.common.model.GenericResponse;
import org.apache.commons.lang.StringUtils;
import org.apache.http.entity.ContentType;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;
/**
* The DeleteScheduleRequest class builds delete scheduled push requests to be executed in
* the {@link com.urbanairship.api.client.UrbanAirshipClient}.
*/
public class ScheduleDeleteRequest implements Request {
private final String scheduleId;
private ScheduleDeleteRequest(String scheduleId) {
this.scheduleId = scheduleId;
}
/**
* Create the delete request.
*
* @param scheduleId String
* @return DeleteScheduleRequest
*/
public static ScheduleDeleteRequest newRequest(String scheduleId) {
Preconditions.checkArgument(StringUtils.isNotEmpty(scheduleId), "Schedule ID may not be null");
return new ScheduleDeleteRequest(scheduleId);
}
@Override
public ContentType getContentType() {
return null;
}
@Override
public Map getRequestHeaders() {
Map headers = new HashMap();
headers.put(HttpHeaders.ACCEPT, UA_VERSION_JSON);
return headers;
}
@Override
public HttpMethod getHttpMethod() {
return HttpMethod.DELETE;
}
@Override
public String getRequestBody() {
return null;
}
@Override
public URI getUri(URI baseUri) {
return RequestUtils.resolveURI(baseUri, ScheduleRequest.API_SCHEDULE_PATH + scheduleId);
}
@Override
public ResponseParser getResponseParser() {
return RequestUtils.GENERIC_RESPONSE_PARSER;
}
@Override
public boolean bearerTokenAuthRequired() {
return false;
}
@Override
public boolean canUseBearerTokenAuth() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy