All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.rest.config.RestClientModule Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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.rest.config;

import static org.jclouds.reflect.Types2.checkBound;
import static org.jclouds.rest.config.BinderUtils.bindSyncToAsyncHttpApi;

import java.util.Map;

import org.jclouds.rest.ConfiguresRestClient;

import com.google.common.collect.ImmutableMap;
import com.google.common.reflect.TypeToken;

/**
 * 
 * @author Adrian Cole
 * 
 * @deprecated will be removed in jclouds 1.7; use {@link HttpApiModule}
 */
@Deprecated
@ConfiguresRestClient
public class RestClientModule extends RestModule {
   protected final TypeToken syncClientType;
   protected final TypeToken asyncClientType;

   private final SyncToAsyncHttpInvocationModule invocationModule;

   /**
    * Note that this ctor requires that you instantiate w/resolved generic params. For example, via
    * a subclass of a bound type, or natural instantiation w/resolved type params.
    */
   protected RestClientModule(Map, Class> sync2Async) {
      this.invocationModule = new SyncToAsyncHttpInvocationModule(sync2Async);
      this.syncClientType = checkBound(new TypeToken(getClass()) {
         private static final long serialVersionUID = 1L;
      });
      this.asyncClientType = checkBound(new TypeToken(getClass()) {
         private static final long serialVersionUID = 1L;
      });
   }

   /**
    * @see #RestClientModule(Map)
    */
   protected RestClientModule() {
      this(ImmutableMap., Class> of());
   }

   /**
    * @see #RestClientModule(TypeToken, TypeToken, Map)
    */
   public RestClientModule(TypeToken syncClientType, TypeToken asyncClientType) {
      this(syncClientType, asyncClientType, ImmutableMap., Class> of());
   }

   /**
    * only necessary when type params are not resolvable at runtime.
    */
   public RestClientModule(TypeToken syncClientType, TypeToken asyncClientType, Map, Class> sync2Async) {
      this.invocationModule = new SyncToAsyncHttpInvocationModule(sync2Async);
      this.syncClientType = checkBound(syncClientType);
      this.asyncClientType = checkBound(asyncClientType);
   }

   @Override
   protected void configure() {
      super.configure();
      install(invocationModule);
      bindSyncToAsyncHttpApi(binder(), syncClientType.getRawType(), asyncClientType.getRawType());
      bindErrorHandlers();
      bindRetryHandlers();
   }

   /**
    * overrides this to change the default retry handlers for the http engine
    * 
    * ex.
    * 
    * 
    * bind(HttpRetryHandler.class).annotatedWith(Redirection.class).to(AWSRedirectionRetryHandler.class);
    * bind(HttpRetryHandler.class).annotatedWith(ClientError.class).to(AWSClientErrorRetryHandler.class);
    * 
* */ protected void bindRetryHandlers() { } /** * overrides this to change the default error handlers for the http engine * * ex. * *
    * bind(HttpErrorHandler.class).annotatedWith(Redirection.class).to(ParseAWSErrorFromXmlContent.class);
    * bind(HttpErrorHandler.class).annotatedWith(ClientError.class).to(ParseAWSErrorFromXmlContent.class);
    * bind(HttpErrorHandler.class).annotatedWith(ServerError.class).to(ParseAWSErrorFromXmlContent.class);
    * 
* * */ protected void bindErrorHandlers() { } }