blob: 5df0da49c350d1d37ea2bf779127192813c30982 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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;
24
25
26import javax.persistence.Column;
27import javax.persistence.Entity;
28import javax.persistence.Id;
29import javax.persistence.Table;
30
31@Entity
32@Table(name = "vid_name_counter")
33public class NameCounter {
34
35 private String name;
36 private Integer counter;
37
38 public NameCounter() {
39 }
40
41 public NameCounter(String name) {
42 this.name = name;
43 this.counter = 1;
44 }
45
46 @Id
47 @Column(name = "name", columnDefinition = "VARCHAR(100)")
48 public String getName() {
49 return name;
50 }
51
52 public void setName(String name) {
53 this.name = name;
54 }
55
56 @Column(name = "counter", columnDefinition = "INT")
57 public Integer getCounter() {
58 return counter;
59 }
60
61 public void setCounter(Integer counter) {
62 this.counter = counter;
63 }
64}