Added support for using oauth token for Kafka
[nonrtric/plt/ranpm.git] / datafilecollector / src / main / java / org / oran / datafile / model / FilePublishInformation.java
1 /*-
2  * ============LICENSE_START======================================================================
3  * Copyright (C) 2018 NOKIA Intellectual Property, 2018-2023 Nordix Foundation. All rights reserved.
4  * ===============================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
6  * in compliance with the License. You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software distributed under the License
11  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12  * or implied. See the License for the specific language governing permissions and limitations under
13  * the License.
14  * ============LICENSE_END========================================================================
15  */
16
17 package org.oran.datafile.model;
18
19 import lombok.Builder;
20 import lombok.EqualsAndHashCode;
21 import lombok.Getter;
22
23 @Builder
24 @EqualsAndHashCode
25 public class FilePublishInformation {
26
27     String productName;
28
29     String vendorName;
30
31     long lastEpochMicrosec;
32
33     @Getter
34     String sourceName;
35
36     long startEpochMicrosec;
37
38     String timeZoneOffset;
39
40     String compression;
41
42     String fileFormatType;
43
44     String fileFormatVersion;
45
46     @Getter
47     String name;
48
49     String changeIdentifier;
50
51     String objectStoreBucket;
52 }