當前位置: 首頁>>代碼示例>>Java>>正文


Java HttpURLConnection.HTTP_CONFLICT屬性代碼示例

本文整理匯總了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);
    }
}
 
開發者ID:avinassh,項目名稱:little-finger-android,代碼行數:14,代碼來源:LittleFinger.java

示例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;
        }
    }
}
 
開發者ID:spac3lord,項目名稱:eip,代碼行數:22,代碼來源:PubSubWrapper.java

示例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);
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:8,代碼來源:DockerAction.java

示例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);
}
 
開發者ID:JonkiPro,項目名稱:REST-Web-Services,代碼行數:9,代碼來源:ResourceConflictException.java


注:本文中的java.net.HttpURLConnection.HTTP_CONFLICT屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。