nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / transport / OnboardingWidget.java
1 /*-
2  * ================================================================================
3  * eCOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.transport;
21
22 import java.io.Serializable;
23
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.Id;
27
28 @Entity
29 public class OnboardingWidget implements Serializable {
30
31         private static final long serialVersionUID = 1L;
32
33         @Id
34         @Column(name = "WIDGET_ID")
35         public Long id;
36
37         @Column(name = "WDG_NAME")
38         public String name;
39
40         @Column(name = "APP_ID")
41         public Long appId;
42
43         @Column(name = "APP_NAME")
44         public String appName;
45
46         @Column(name = "WDG_WIDTH")
47         public Integer width;
48
49         @Column(name = "WDG_HEIGHT")
50         public Integer height;
51
52         @Column(name = "WDG_URL")
53         public String url;
54
55         public void normalize() {
56                 this.name = (this.name == null) ? "" : this.name.trim();
57                 this.appName = (this.appName == null) ? "" : this.appName.trim();
58                 if (this.width == null)
59                         this.width = new Integer(0);
60                 if (this.height == null)
61                         this.height = new Integer(0);
62                 this.url = (this.url == null) ? "" : this.url.trim();
63         }
64
65 }