94a336b6da809b7538a93e279a804f4db151c428
[policy/models.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 Bell Canada.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.policy.cds.properties;
20
21 import java.nio.charset.StandardCharsets;
22 import java.util.Base64;
23 import lombok.Getter;
24 import lombok.Setter;
25 import lombok.ToString;
26 import org.onap.policy.common.parameters.GroupValidationResult;
27 import org.onap.policy.common.parameters.ParameterGroup;
28 import org.onap.policy.common.parameters.ParameterRuntimeException;
29 import org.onap.policy.common.parameters.annotations.Max;
30 import org.onap.policy.common.parameters.annotations.Min;
31 import org.onap.policy.common.parameters.annotations.NotNull;
32
33 @Getter
34 @Setter
35 @ToString
36 public class CdsServerProperties implements ParameterGroup {
37
38     // Port range constants
39     private static final int MIN_USER_PORT = 1024;
40     private static final int MAX_USER_PORT = 65535;
41
42     private static final String INVALID_PROP = "Invalid CDS property: ";
43     private static final String SERVER_PROPERTIES_TYPE = "CDS gRPC Server Properties";
44
45     // CDS carrier properties
46     @Min(value = 1)
47     private int timeout;
48
49     @Min(value = MIN_USER_PORT)
50     @Max(value = MAX_USER_PORT)
51     private int port;
52
53     @NotNull
54     private String host;
55
56     @NotNull
57     private String username;
58
59     @NotNull
60     private String password;
61
62
63     @Override
64     public String getName() {
65         return SERVER_PROPERTIES_TYPE;
66     }
67
68     @Override
69     public void setName(final String name) {
70         throw new ParameterRuntimeException("The name of this ParameterGroup implementation is always " + getName());
71     }
72
73     @Override
74     public GroupValidationResult validate() {
75         return new GroupValidationResult(this);
76     }
77
78     /**
79      * Generate base64-encoded Authorization header from username and password.
80      *
81      * @return Base64 encoded string
82      */
83     public String getBasicAuth() {
84         return Base64.getEncoder().encodeToString(String.format("%s:%s", getUsername(), getPassword())
85             .getBytes(StandardCharsets.UTF_8));
86     }
87 }