2ec272fcb1a17912482f23d345182e838291978a
[sdc/sdc-workflow-designer.git] / workflow-designer-be / src / main / java / org / onap / sdc / workflow / api / types / dto / ArtifactDeliveriesRequestDto.java
1 /*
2  * Copyright © 2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.sdc.workflow.api.types.dto;
18
19 import lombok.Data;
20
21 /**
22  * This class is a simple data object for the Artifact-Deliveries API
23  * It will be used to build a HTTP request to be sent to SDC external API
24  *
25  * method
26  *      the HTTP method (PUT, POST etc) that will be executed.
27  *
28  *  endpoint
29  *          the server to which the request will be sent.
30  *          correct format is <IP>:<PORT>
31  */
32 @Data
33 public class ArtifactDeliveriesRequestDto {
34
35     private String method;
36     private String endpoint;
37
38     public ArtifactDeliveriesRequestDto(){
39     }
40
41     public ArtifactDeliveriesRequestDto(String method, String endpoint) {
42         this.method = method;
43         this.endpoint = endpoint;
44     }
45 }