Some changes in status notifications
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / EiJob.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 package org.oransc.enrichment.repository;
22
23 import java.lang.invoke.MethodHandles;
24
25 import lombok.Getter;
26
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 /**
31  * Represents the dynamic information about a EI job
32  */
33
34 public class EiJob {
35     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
36
37     @Getter
38     private final String id;
39
40     @Getter
41     private final String typeId;
42
43     @Getter
44     private final String owner;
45
46     @Getter
47     private final Object jobData;
48
49     @Getter
50     private final String targetUrl;
51
52     @Getter
53     private final String jobStatusUrl;
54
55     @Getter
56     private boolean isLastStatusReportedEnabled = true;
57
58     public EiJob(String id, String typeId, String owner, Object jobData, String targetUrl, String jobStatusUrl) {
59         this.id = id;
60         this.typeId = typeId;
61         this.owner = owner;
62         this.jobData = jobData;
63         this.targetUrl = targetUrl;
64         this.jobStatusUrl = jobStatusUrl;
65     }
66
67     public void setLastReportedStatus(boolean isEnabled) {
68         this.isLastStatusReportedEnabled = isEnabled;
69         logger.debug("Job status id: {}, enabled: {}", this.isLastStatusReportedEnabled, isEnabled);
70     }
71
72 }