Merge "Kafka now works in kube for calls outside its namespace"
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / repository / InfoJob.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 import java.time.Instant;
25
26 import lombok.Builder;
27 import lombok.Getter;
28
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 /**
33  * Represents the dynamic information about a information job
34  */
35 @Builder
36 public class InfoJob {
37     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
38
39     @Getter
40     private final String id;
41
42     @Getter
43     private final String typeId;
44
45     @Getter
46     private final String owner;
47
48     @Getter
49     private final Object jobData;
50
51     @Getter
52     private final String targetUrl;
53
54     @Getter
55     private final String jobStatusUrl;
56
57     @Getter
58     @Builder.Default
59     private String lastUpdated = Instant.now().toString();
60
61     @Getter
62     @Builder.Default
63     private boolean isLastStatusReportedEnabled = true;
64
65     public void setLastReportedStatus(boolean isEnabled) {
66         this.isLastStatusReportedEnabled = isEnabled;
67         logger.debug("Job status id: {}, enabled: {}", this.isLastStatusReportedEnabled, isEnabled);
68     }
69
70 }