Add getJobs and adapt getProducers
[portal/nonrtric-controlpanel.git] / webapp-backend / src / main / java / org / oransc / portal / nonrtric / controlpanel / model / ProducerInfo.java
1 /*-
2  * ========================LICENSE_START=================================
3  * Copyright (C) 2020 Nordix Foundation. All rights reserved.
4  * ======================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy 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,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ========================LICENSE_END===================================
17  */
18
19 package org.oransc.portal.nonrtric.controlpanel.model;
20
21 import com.fasterxml.jackson.annotation.JsonProperty;
22 import com.google.gson.annotations.SerializedName;
23
24 import io.swagger.annotations.ApiModel;
25 import io.swagger.annotations.ApiModelProperty;
26 import lombok.Builder;
27
28 import org.immutables.gson.Gson;
29
30 @Gson.TypeAdapters
31 @ApiModel(value = "ei_producer", description = "The EI producer")
32 @Builder
33 public class ProducerInfo {
34
35     @ApiModelProperty(value = "Idenitity of the EI producer", required = true)
36     @SerializedName("ei_producer_id")
37     @JsonProperty("ei_producer_id")
38     public String id;
39
40     @ApiModelProperty(value = "Types provided by the EI producer", required = true)
41     @SerializedName("ei_producer_types")
42     @JsonProperty("ei_producer_types")
43     public String[] types;
44
45     @ApiModelProperty(value = "Status of the EI producer", required = true)
46     @SerializedName("status")
47     @JsonProperty("status")
48     public String status;
49
50 }