fixed compile errors on rimu

This commit is contained in:
Adrian Cole 2011-03-27 22:20:51 -07:00
parent adce931893
commit 550056d214
2 changed files with 5 additions and 5 deletions

View File

@ -34,8 +34,8 @@ import javax.ws.rs.core.MediaType;
import org.jclouds.rest.annotations.ExceptionParser;
import org.jclouds.rest.annotations.MapBinder;
import org.jclouds.rest.annotations.MapPayloadParam;
import org.jclouds.rest.annotations.MatrixParams;
import org.jclouds.rest.annotations.PayloadParam;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.ResponseParser;
import org.jclouds.rest.annotations.Unwrap;
@ -112,9 +112,9 @@ public interface RimuHostingAsyncClient {
@ExceptionParser(ParseRimuHostingException.class)
@Unwrap
@MapBinder(CreateServerOptions.class)
ListenableFuture<NewServerResponse> createServer(@MapPayloadParam("name") String name,
@MapPayloadParam("imageId") String imageId, @MapPayloadParam("planId") String planId,
CreateServerOptions... options);
ListenableFuture<NewServerResponse> createServer(@PayloadParam("name") String name,
@PayloadParam("imageId") String imageId, @PayloadParam("planId") String planId,
CreateServerOptions... options);
/**
* @see RimuHostingClient#getServer

View File

@ -23,7 +23,7 @@ import java.util.Set;
import org.jclouds.compute.BaseTemplateBuilderLiveTest;
import org.jclouds.compute.domain.OsFamily;
import org.jclouds.compute.domain.os.OsFamilyVersion64Bit;
import org.jclouds.compute.domain.OsFamilyVersion64Bit;
import org.testng.annotations.Test;
import com.google.common.base.Predicate;