summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/pmmapper/model/MapperConfig.java
blob: 18b9388c8355c9d615e9bdfd61fd7af8caf2c8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*-
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2019 Nordix Foundation.
 *  Copyright (C) 2022 Nokia. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.dcaegen2.services.pmmapper.model;

import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import org.onap.dcaegen2.services.pmmapper.config.Configurable;
import org.onap.dcaegen2.services.pmmapper.utils.DMaaPAdapter;
import org.onap.dcaegen2.services.pmmapper.utils.GSONRequired;
import org.onap.dcaegen2.services.pmmapper.utils.MeasFilterConfigAdapter;

@Getter
@EqualsAndHashCode
@NoArgsConstructor
public class MapperConfig implements Configurable {

    public static final String CLIENT_NAME = "pm-mapper";

    @GSONRequired
    @SerializedName("enable_http")
    private Boolean enableHttp;

    @SerializedName("key_store_path")
    private String keyStorePath;

    @SerializedName("key_store_pass_path")
    private String keyStorePassPath;

    @SerializedName("trust_store_path")
    private String trustStorePath;

    @SerializedName("trust_store_pass_path")
    private String trustStorePassPath;

    @GSONRequired
    @SerializedName("dmaap_dr_delete_endpoint")
    private String dmaapDRDeleteEndpoint;

    @GSONRequired
    @SerializedName("pm-mapper-filter")
    @JsonAdapter(MeasFilterConfigAdapter.class)
    private MeasFilterConfig filterConfig;

    @SerializedName("aaf_identity")
    private String aafUsername;

    @SerializedName("aaf_password")
    private String aafPassword;

    @GSONRequired
    @SerializedName("streams_subscribes")
    @JsonAdapter(DMaaPAdapter.class)
    private SubscriberConfig subscriberConfig;

    @GSONRequired
    @SerializedName("streams_publishes")
    @JsonAdapter(DMaaPAdapter.class)
    private PublisherConfig publisherConfig;

    public String getSubscriberIdentity() {
        return this.getSubscriberConfig().getSubscriberId();
    }

    public String getPublisherTopicUrl() {
        return this.getPublisherConfig().getTopicUrl();
    }

    public String getPublisherUserName() {
        return this.getAafUsername();
    }

    public String getPublisherPassword() {
        return this.getAafPassword();
    }

    public void reconfigure(MapperConfig mapperConfig) {
        if (!this.equals(mapperConfig)) {
            this.filterConfig = mapperConfig.getFilterConfig();
            this.publisherConfig = mapperConfig.getPublisherConfig();
            this.subscriberConfig = mapperConfig.getSubscriberConfig();
            this.dmaapDRDeleteEndpoint = mapperConfig.getDmaapDRDeleteEndpoint();
            this.aafUsername = mapperConfig.getAafUsername();
            this.aafPassword = mapperConfig.getAafPassword();
        }
    }

    @Override
    public String toString() {
        return "MapperConfig{" +
                "enableHttp=" + enableHttp +
                ", keyStorePath='" + keyStorePath + '\'' +
                ", keyStorePassPath='" + keyStorePassPath + '\'' +
                ", trustStorePath='" + trustStorePath + '\'' +
                ", trustStorePassPath='" + trustStorePassPath + '\'' +
                ", dmaapDRDeleteEndpoint='" + dmaapDRDeleteEndpoint + '\'' +
                ", filterConfig=" + filterConfig +
                ", aafUsername='" + aafUsername + '\'' +
                ", aafPassword= *****" +
                ", subscriberConfig=" + subscriberConfig +
                ", publisherConfig=" + publisherConfig +
                '}';
    }
}