Java tutorial
/** * Licensed to jclouds, Inc. (jclouds) under one or more * contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. jclouds licenses this file * to you 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.jclouds.abiquo.functions; import javax.inject.Singleton; import javax.ws.rs.core.Response.Status; import org.jclouds.http.HttpResponse; import org.jclouds.http.HttpResponseException; import com.google.common.base.Function; import com.google.common.base.Predicate; import com.google.common.base.Throwables; import com.google.common.collect.Iterables; /** * Return <code>null</code> on 303 response codes when requesting a task. * * @author Ignasi Barrera */ @Singleton public class ReturnNullOn303 implements Function<Exception, Object> { @Override public Object apply(final Exception from) { Throwable exception = Iterables.find(Throwables.getCausalChain(from), hasResponse(from), null); if (exception != null) { HttpResponseException responseException = (HttpResponseException) exception; HttpResponse response = responseException.getResponse(); if (response != null && response.getStatusCode() == Status.SEE_OTHER.getStatusCode()) { return null; } } throw Throwables.propagate(from); } private static Predicate<Throwable> hasResponse(final Throwable exception) { return new Predicate<Throwable>() { @Override public boolean apply(final Throwable input) { return input instanceof HttpResponseException && ((HttpResponseException) input).getResponse() != null; } }; } }