org.jclouds.rest.annotations.VirtualHost.<init>()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(71)

本文整理了Java中org.jclouds.rest.annotations.VirtualHost.<init>()方法的一些代码示例,展示了VirtualHost.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。VirtualHost.<init>()方法的具体详情如下:
包路径:org.jclouds.rest.annotations.VirtualHost
类名称:VirtualHost
方法名:<init>

VirtualHost.<init>介绍

暂无

代码示例

代码示例来源:origin: org.apache.jclouds.api/openstack-swift

@VirtualHost
interface TempAuthApi  extends Closeable {
 @Named("TempAuth")
 @GET
 @Consumes
 @ResponseParser(AdaptTempAuthResponseToAccess.class)
 Access auth(@BinderParam(TempAuthBinder.class) Credentials credentials);
}

代码示例来源:origin: Nextdoor/bender

@VirtualHost
interface TempAuthApi  extends Closeable {
 @Named("TempAuth")
 @GET
 @Consumes
 @ResponseParser(AdaptTempAuthResponseToAccess.class)
 Access auth(@BinderParam(TempAuthBinder.class) Credentials credentials);
}

代码示例来源:origin: apache/jclouds

@VirtualHost
interface TempAuthApi  extends Closeable {
 @Named("TempAuth")
 @GET
 @Consumes
 @ResponseParser(AdaptTempAuthResponseToAccess.class)
 Access auth(@BinderParam(TempAuthBinder.class) Credentials credentials);
}

代码示例来源:origin: jclouds/legacy-jclouds

/**
 * Provides access to Rackspace resources via their REST API.
 * <p/>
 * 
 * @see <a href="http://docs.rackspacecloud.com/servers/api/cs-devguide-latest.pdf" />
 * @author Adrian Cole
 */
@Path("/v{" + Constants.PROPERTY_API_VERSION + "}")
@VirtualHost
public interface OpenStackAuthAsyncClient {

  @GET
  @Consumes
  @ResponseParser(ParseAuthenticationResponseFromHeaders.class)
  ListenableFuture<AuthenticationResponse> authenticate(@HeaderParam(AuthHeaders.AUTH_USER) String user,
      @HeaderParam(AuthHeaders.AUTH_KEY) String key);
  
  @GET
  @Consumes
  @ResponseParser(ParseAuthenticationResponseFromHeaders.class)
  ListenableFuture<AuthenticationResponse> authenticateStorage(@HeaderParam(AuthHeaders.STORAGE_USER) String user,
      @HeaderParam(AuthHeaders.STORAGE_PASS) String key);
}

代码示例来源:origin: jclouds/legacy-jclouds

/**
* @see S3Client#listOwnedBuckets
*/
@Named("ListAllMyBuckets")
@GET
@XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/")
@VirtualHost
ListenableFuture<? extends Set<BucketMetadata>> listOwnedBuckets();

代码示例来源:origin: org.jclouds/jclouds-aws

/**
* @see S3Client#listOwnedBuckets
*/
@GET
@XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/")
@VirtualHost
ListenableFuture<? extends Set<BucketMetadata>> listOwnedBuckets();

代码示例来源:origin: org.apache.jclouds.api/s3

/**
* Returns a list of all of the buckets owned by the authenticated sender of the request.
* 
* @return list of all of the buckets owned by the authenticated sender of the request.
*/
@Named("ListAllMyBuckets")
@GET
@XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/")
@VirtualHost
Set<BucketMetadata> listOwnedBuckets();

代码示例来源:origin: org.jclouds.api/s3

/**
* @see S3Client#listOwnedBuckets
*/
@Named("ListAllMyBuckets")
@GET
@XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/")
@VirtualHost
ListenableFuture<? extends Set<BucketMetadata>> listOwnedBuckets();

代码示例来源:origin: Nextdoor/bender

/**
* Returns a list of all of the buckets owned by the authenticated sender of the request.
* 
* @return list of all of the buckets owned by the authenticated sender of the request.
*/
@Named("ListAllMyBuckets")
@GET
@XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/")
@VirtualHost
Set<BucketMetadata> listOwnedBuckets();

代码示例来源:origin: apache/jclouds

/**
* Returns a list of all of the buckets owned by the authenticated sender of the request.
* 
* @return list of all of the buckets owned by the authenticated sender of the request.
*/
@Named("ListAllMyBuckets")
@GET
@XMLResponseParser(ListAllMyBucketsHandler.class)
@Path("/")
@VirtualHost
Set<BucketMetadata> listOwnedBuckets();

代码示例来源:origin: jclouds/legacy-jclouds

@GET
 @Path("/{id}")
 @VirtualHost
 public ListenableFuture<String> get(@PathParam("id") String id, String foo) {
   return null;
 }
}

代码示例来源:origin: jclouds/legacy-jclouds

@GET
@VirtualHost
@Path("/{id}")
ListenableFuture<String> get(@PathParam("id") String id, HttpRequestOptions options);

代码示例来源:origin: jclouds/legacy-jclouds

@GET
@Path("/{id}")
@VirtualHost
ListenableFuture<String> get(@PathParam("id") String id, String foo);

代码示例来源:origin: jclouds/legacy-jclouds

@GET
@VirtualHost
@Path("/{id}")
ListenableFuture<String> get(@PathParam("id") String id, HttpRequestOptions... options);

代码示例来源:origin: jclouds/legacy-jclouds

@PUT
@Path("/{id}")
@VirtualHost
ListenableFuture<String> putOptions(@PathParam("id") String id, HttpRequestOptions options);

代码示例来源:origin: apache/jclouds

@GET
 @Path("/{id}")
 @VirtualHost
 public String get(@PathParam("id") String id, String foo) {
   return null;
 }
}

代码示例来源:origin: apache/jclouds

@PUT
@Path("/{id}")
@VirtualHost
String putOptions(@PathParam("id") String id, HttpRequestOptions options);

代码示例来源:origin: apache/jclouds

@GET
@Path("/{id}")
@VirtualHost
String get(@PathParam("id") String id, String foo);

代码示例来源:origin: apache/jclouds

@GET
@VirtualHost
@Path("/{id}")
String get(@PathParam("id") String id, HttpRequestOptions options);

代码示例来源:origin: apache/jclouds

@GET
@VirtualHost
@Path("/{id}")
String get(@PathParam("id") String id, HttpRequestOptions... options);

相关文章

VirtualHost类方法