/*
* Copyright 2011 Open Source Applications Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.osaf.caldav4j.support;
import net.fortuna.ical4j.model.Calendar;
import org.apache.commons.httpclient.HttpMethod;
import org.osaf.caldav4j.methods.CalendarCalDAVReportMethod;
import org.osaf.caldav4j.support.HttpClientTestUtils.HttpMethodCallback;
/**
* Factory for producing {@code HttpMethodCallback} implementations.
*
* @author <a href="mailto:markhobson@gmail.com">Mark Hobson</a>
* @version $Id$
*/
public final class HttpMethodCallbacks
{
// constants --------------------------------------------------------------
private static final HttpMethodCallback<Void, HttpMethod, RuntimeException> NULL_CALLBACK =
new HttpMethodCallback<Void, HttpMethod, RuntimeException>()
{
public Void getResponse(HttpMethod method) throws RuntimeException
{
return null;
}
};
private static final HttpMethodCallback<Calendar, CalendarCalDAVReportMethod, Exception> CALENDAR_REPORT_CALLBACK =
new HttpMethodCallback<Calendar, CalendarCalDAVReportMethod, Exception>()
{
public Calendar getResponse(CalendarCalDAVReportMethod method) throws Exception
{
return method.getResponseBodyAsCalendar();
}
};
// constructors -----------------------------------------------------------
private HttpMethodCallbacks()
{
throw new AssertionError();
}
// public methods ---------------------------------------------------------
public static HttpMethodCallback<Void, HttpMethod, RuntimeException> nullCallback()
{
return NULL_CALLBACK;
}
public static HttpMethodCallback<Calendar, CalendarCalDAVReportMethod, Exception> calendarReportCallback()
{
return CALENDAR_REPORT_CALLBACK;
}
}