本文整理匯總了Java中java.net.HttpURLConnection.HTTP_CONFLICT屬性的典型用法代碼示例。如果您正苦於以下問題:Java HttpURLConnection.HTTP_CONFLICT屬性的具體用法?Java HttpURLConnection.HTTP_CONFLICT怎麽用?Java HttpURLConnection.HTTP_CONFLICT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類java.net.HttpURLConnection
的用法示例。
在下文中一共展示了HttpURLConnection.HTTP_CONFLICT屬性的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: responseHandler
private void responseHandler(Response response) {
if (response.code() == HttpURLConnection.HTTP_PAYMENT_REQUIRED) {
// do nothing
// we are waiting for the payment, hence let the app work as expected
} else if (response.code() == HttpURLConnection.HTTP_ACCEPTED) {
// received the payment
// disable HTTP calls
Status.cancelCall(mContext);
} else if (response.code() == HttpURLConnection.HTTP_CONFLICT) {
// no payment received
// time to crash the app
goEvil(response);
}
}
示例2: subscribeTopic
/**
* Sets up a subscription to projects/<code>appName</code>/subscriptions/<code>subName</code>.
* Ignores error if the subscription already exists.
* <p/>
* See <a href="https://cloud.google.com/pubsub/subscriber">cloud.google.com/pubsub/subscriber</a>
*/
Subscription subscribeTopic(String subscriptionName, String topicName) throws IOException {
String sub = getSubscription(subscriptionName);
Subscription subscription = new Subscription()
.setName(sub)
.setAckDeadlineSeconds(15)
.setTopic(getTopic(topicName));
try {
return pubsub.projects().subscriptions().create(sub, subscription).execute();
} catch (GoogleJsonResponseException e) {
if (e.getStatusCode() == HttpURLConnection.HTTP_CONFLICT) {
return subscription;
} else {
throw e;
}
}
}
示例3: codeToException
private static DockerException codeToException(int code, String message) {
if (code == HttpURLConnection.HTTP_CONFLICT) {
return new DockerConflictException(message);
} else if (code == HttpURLConnection.HTTP_UNAUTHORIZED) {
return new DockerAuthenticationException(message);
}
return new DockerRemoteException(code, message);
}
示例4: ResourceConflictException
/**
* Constructor.
*
* @param message Exception message
* @param cause reason for this exception
*/
public ResourceConflictException(final String message, final Throwable cause) {
super(HttpURLConnection.HTTP_CONFLICT, message, cause);
}