blob: 879e93795622b518d06be2974769eb1bc7fcaed4 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM Core
4 * ================================================================================
5 * Copyright (C) 2018 Netsia
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
22
23package org.onap.osam.model.dao;
24
25import lombok.Getter;
26import lombok.Setter;
27
28import javax.persistence.Column;
29import javax.persistence.Entity;
30
31/**
32 * Created by cemturker on 26.09.2018.
33 */
34@Entity
35@Getter
36@Setter
37public class AccessPod extends BaseEntity {
38
39 @Column(unique = true)
40 private String pnfId;
41 @Column(nullable = false)
42 private String coreIp;
43 @Column(nullable = false)
44 private String corePort;
45 @Column(nullable = false)
46 private String ip;
47 @Column(nullable = false)
48 private String port;
49 private String username;
50 private String password;
51
52 @Override
53 public String toString() {
54 final StringBuilder sb = new StringBuilder("AccessPod{");
55 sb.append("pnfId='").append(pnfId).append('\'');
56 sb.append(", coreIp='").append(coreIp).append('\'');
57 sb.append(", corePort='").append(corePort).append('\'');
58 sb.append(", id=").append(id);
59 sb.append(", ip='").append(ip).append('\'');
60 sb.append(", port='").append(port).append('\'');
61 sb.append(", username='").append(username).append('\'');
62 sb.append(", password='").append(password).append('\'');
63 sb.append('}');
64 return sb.toString();
65 }
66}