blob: 620f28c0fb72ffc1aebdb8a1a85bfd2722d152fd [file] [log] [blame]
/*
* 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.apache.jclouds.profitbricks.rest;
import java.io.Closeable;
import java.net.URI;
import javax.inject.Inject;
import javax.inject.Named;
import javax.ws.rs.GET;
import org.apache.jclouds.profitbricks.rest.domain.RequestStatus;
import org.apache.jclouds.profitbricks.rest.features.DataCenterApi;
import org.apache.jclouds.profitbricks.rest.features.FirewallApi;
import org.apache.jclouds.profitbricks.rest.features.ImageApi;
import org.apache.jclouds.profitbricks.rest.features.IpBlockApi;
import org.apache.jclouds.profitbricks.rest.features.LanApi;
import org.apache.jclouds.profitbricks.rest.features.NicApi;
import org.apache.jclouds.profitbricks.rest.features.ServerApi;
import org.apache.jclouds.profitbricks.rest.features.SnapshotApi;
import org.apache.jclouds.profitbricks.rest.features.VolumeApi;
import org.apache.jclouds.profitbricks.rest.util.Trackables;
import org.jclouds.Fallbacks;
import org.jclouds.http.filters.BasicAuthentication;
import org.jclouds.http.functions.ParseJson;
import org.jclouds.json.Json;
import org.jclouds.rest.annotations.Delegate;
import org.jclouds.rest.annotations.EndpointParam;
import org.jclouds.rest.annotations.Fallback;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.ResponseParser;
import com.google.common.annotations.Beta;
import com.google.inject.Provides;
import com.google.inject.TypeLiteral;
@Beta
public interface ProfitBricksApi extends Closeable {
@Provides
Trackables trackables();
@Delegate
DataCenterApi dataCenterApi();
@Delegate
LanApi lanApi();
@Delegate
FirewallApi firewallApi();
@Delegate
ServerApi serverApi();
@Delegate
VolumeApi volumeApi();
@Delegate
ImageApi imageApi();
@Delegate
SnapshotApi snapshotApi();
@Delegate
NicApi nicApi();
@Delegate
IpBlockApi ipBlockApi();
@Named("request:status")
@GET
@RequestFilters(BasicAuthentication.class)
@Fallback(Fallbacks.NullOnNotFoundOr404.class)
@ResponseParser(RequestStatusParser.class)
RequestStatus getRequestStatus(@EndpointParam URI requestStatusURI);
static final class RequestStatusParser extends ParseJson<RequestStatus> {
@Inject RequestStatusParser(Json json) {
super(json, TypeLiteral.get(RequestStatus.class));
}
}
}