2 * ========================LICENSE_START=================================
5 * Copyright (C) 2019 Nordix Foundation
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
21 package org.oransc.enrichment.repository;
23 import java.lang.invoke.MethodHandles;
24 import java.time.Instant;
26 import lombok.Builder;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
33 * Represents the dynamic information about a information job
36 public class InfoJob {
37 private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
40 private final String id;
43 private final String typeId;
46 private final String owner;
49 private final Object jobData;
52 private final String targetUrl;
55 private final String jobStatusUrl;
59 private String lastUpdated = Instant.now().toString();
63 private boolean isLastStatusReportedEnabled = true;
65 public void setLastReportedStatus(boolean isEnabled) {
66 this.isLastStatusReportedEnabled = isEnabled;
67 logger.debug("Job status id: {}, enabled: {}", this.isLastStatusReportedEnabled, isEnabled);