
com.paypal.core.rest.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paypal-core Show documentation
Show all versions of paypal-core Show documentation
PayPal Java SDK Core library base and common to PayPal SDKs. The paypal-core library is a dependency for all PayPal related Java SDKs
package com.paypal.core.rest;
/**
* HttpMethod enums used for HTTP method verbs
* @author kjayakumar
*
*/
public enum HttpMethod {
// Get Http Method
GET,
// Post Http Method
POST,
// Patch Http Method
PATCH,
// Put Http Method
PUT,
// Delete Http Method
DELETE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy