AT&T 1712 and 1802 release code
[so.git] / aria / aria-rest-java-client / src / main / java / com / gigaspaces / aria / rest / client / ExecutionImpl.java
1 /*
2  * ============LICENSE_START===================================================
3  * Copyright (c) 2017 Cloudify.co.  All rights reserved.
4  * ===================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6  * use this file except in compliance with the License. You may obtain a copy
7  * of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14  * License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END====================================================
17 */
18 package com.gigaspaces.aria.rest.client;
19
20 import com.fasterxml.jackson.annotation.JsonProperty;
21
22 /**
23  * Created by DeWayne on 7/17/2017.
24  */
25 public class ExecutionImpl implements Execution {
26     @JsonProperty("execution_id")
27     int execution_id;
28     @JsonProperty("workflow_name")
29     String workflow_name;
30     @JsonProperty("service_template_name")
31     String service_template_name;
32     @JsonProperty("service_name")
33     String service_name;
34     String status;
35
36     public int getExecutionId() {
37         return execution_id;
38     }
39     public String getWorkflowName() {
40         return workflow_name;
41     }
42
43     public String getServiceTemplateName() {
44         return service_template_name;
45     }
46
47     public String getServiceName() {
48         return service_name;
49     }
50
51     public String getStatus() {
52         return status;
53     }
54 }