Adding owner to jobInfo
[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.Builder;
26 import lombok.Getter;
27
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 /**
32  * Represents the dynamic information about a EI job
33  */
34 @Builder
35 public class EiJob {
36     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
37
38     @Getter
39     private final String id;
40
41     @Getter
42     private final String typeId;
43
44     @Getter
45     private final String owner;
46
47     @Getter
48     private final Object jobData;
49
50     @Getter
51     private final String targetUrl;
52
53     @Getter
54     private final String jobStatusUrl;
55
56     @Getter
57     @Builder.Default
58     private boolean isLastStatusReportedEnabled = true;
59
60     public void setLastReportedStatus(boolean isEnabled) {
61         this.isLastStatusReportedEnabled = isEnabled;
62         logger.debug("Job status id: {}, enabled: {}", this.isLastStatusReportedEnabled, isEnabled);
63     }
64
65 }