001 /*
002 * Apache License
003 * Version 2.0, January 2004
004 * http://www.apache.org/licenses/
005 *
006 * Copyright 2008 by chenillekit.org
007 *
008 * Licensed under the Apache License, Version 2.0 (the "License");
009 * you may not use this file except in compliance with the License.
010 * You may obtain a copy of the License at
011 *
012 * http://www.apache.org/licenses/LICENSE-2.0
013 */
014
015 package org.chenillekit.google.services;
016
017 /**
018 * @version $Id: GoogleService.java 316 2008-11-11 16:42:03Z homburgs $
019 */
020 public interface GoogleService
021 {
022 /**
023 * get the proxy.
024 */
025 String getProxy();
026
027 /**
028 * the configured referer.
029 */
030 String getReferer();
031
032 /**
033 * timeout for service request.
034 */
035 int getTimeout();
036
037 /**
038 * the google access key.
039 */
040 String getKey();
041 }