modify license header
[vfc/nfvo/wfengine.git] / wso2bpel-ext / wso2bpel-core / BPEL4RESTLight / src / main / java / org / opentosca / bpel4restlight / rest / HttpMethod.java
1 /*******************************************************************************
2  * Copyright (c) 2012-2013 University of Stuttgart.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * and the Apache License 2.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9 /*
10  * Modifications Copyright 2016-2017 ZTE Corporation.
11  */
12 /**
13  * This enum is intended to simplify identifying different HTTP-methods
14  */
15 package org.opentosca.bpel4restlight.rest;
16
17
18 public enum HttpMethod {
19         PUT, POST, GET, DELETE
20 }