当前位置: 首页>>代码示例>>Java>>正文


Java Beta类代码示例

本文整理汇总了Java中com.google.api.client.util.Beta的典型用法代码示例。如果您正苦于以下问题:Java Beta类的具体用法?Java Beta怎么用?Java Beta使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Beta类属于com.google.api.client.util包,在下文中一共展示了Beta类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: call

import com.google.api.client.util.Beta; //导入依赖的package包/类
@Beta
public <T extends Response> Future<T> executeAysnc(
		final String method, final PostmenUrl endpoint, final Object body, final Class<T> type
		) throws InterruptedException {
	
	Callable<T> req = new Callable<T>() {
		public T call() throws IOException {
			return execute(requestFactory, method, endpoint, body, type);
		}
	};
	
	ExecutorService executor = Executors.newSingleThreadScheduledExecutor();
	Future<T> f = executor.submit(req);
	executor.awaitTermination(1, TimeUnit.MINUTES);
	return f;
}
 
开发者ID:postmen,项目名称:postmen-sdk-java,代码行数:17,代码来源:Handler.java

示例2: serverErrorCallback

import com.google.api.client.util.Beta; //导入依赖的package包/类
/**
 * {@link Beta} <br/>
 * The call back method that will be invoked on a server error or an I/O
 * exception during resumable upload inside {@link #upload}.
 *
 * <p>
 * This method changes the current request to query the current status of
 * the upload to find how many bytes were successfully uploaded before the
 * server error occurred.
 * </p>
 */
@Beta
void serverErrorCallback() throws IOException {
	Preconditions.checkNotNull(currentRequest,
			"The current request should not be null");

	// Query the current status of the upload by issuing an empty PUT
	// request on the upload URI.
	currentRequest.setContent(new EmptyContent());
	currentRequest
			.getHeaders()
			.setContentRange(
					"bytes */"
							+ (isMediaLengthKnown() ? getMediaContentLength()
									: "*"));
}
 
开发者ID:roikku,项目名称:drive-uploader,代码行数:27,代码来源:MediaHttpUploader.java

示例3: setCredentialStore

import com.google.api.client.util.Beta; //导入依赖的package包/类
@Beta
@Override
public Builder setCredentialStore(CredentialStore credentialStore) {
    return (Builder) super.setCredentialStore(credentialStore);
}
 
开发者ID:agilie,项目名称:dribbble-android-sdk,代码行数:6,代码来源:AuthorizationFlow.java

示例4: setScopes

import com.google.api.client.util.Beta; //导入依赖的package包/类
@Beta
@Deprecated
@Override
public Builder setScopes(Iterable<String> scopes) {
    return (Builder) super.setScopes(scopes);
}
 
开发者ID:agilie,项目名称:dribbble-android-sdk,代码行数:7,代码来源:AuthorizationFlow.java

示例5: doNotValidateCertificate

import com.google.api.client.util.Beta; //导入依赖的package包/类
/**
 * {@link com.google.api.client.util.Beta} <br/>
 * Disables validating server SSL certificates by setting the SSL socket factory using
 * {@link com.google.api.client.util.SslUtils#trustAllSSLContext()} for the SSL context and
 * {@link com.google.api.client.util.SslUtils#trustAllHostnameVerifier()} for the host name verifier.
 * <p/>
 * <p>
 * Be careful! Disabling certificate validation is dangerous and should only be done in testing
 * environments.
 * </p>
 */
@Beta
public Builder doNotValidateCertificate() throws GeneralSecurityException {
    hostnameVerifier = SslUtils.trustAllHostnameVerifier();
    sslSocketFactory = SslUtils.trustAllSSLContext().getSocketFactory();
    return this;
}
 
开发者ID:AndrewJack,项目名称:moment-for-android-wear,代码行数:18,代码来源:OkHttpTransport.java


注:本文中的com.google.api.client.util.Beta类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。