Package org.openhab.binding.netatmo.internal.messages

Source Code of org.openhab.binding.netatmo.internal.messages.AbstractRequest

/**
* Copyright (c) 2010-2013, openHAB.org and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.openhab.binding.netatmo.internal.messages;

import java.util.Properties;

import org.codehaus.jackson.map.JsonMappingException;
import org.codehaus.jackson.map.ObjectMapper;
import org.openhab.binding.netatmo.internal.NetatmoException;

/**
* Base class for all Netatmo API requests.
*
* @author Andreas Brenk
* @since 1.4.0
*/
public abstract class AbstractRequest extends AbstractMessage implements Request {

  protected static final String HTTP_GET = "GET";

  protected static final String HTTP_POST = "POST";

  protected static final Properties HTTP_HEADERS;

  protected static final int HTTP_REQUEST_TIMEOUT = 10000;

  protected static final ObjectMapper JSON = new ObjectMapper();

  static {
    HTTP_HEADERS = new Properties();
    HTTP_HEADERS.put("Accept", "application/json");
  }

  protected final RuntimeException newException(
      final String message, final Exception cause,
      final String url, final String json) {
    if(cause instanceof JsonMappingException) {
      return new NetatmoException("Could not parse JSON from URL '"
          + url + "': " + json, cause);
    }

    return new NetatmoException(message, cause);
  }
 
}
TOP

Related Classes of org.openhab.binding.netatmo.internal.messages.AbstractRequest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.