nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / ecomp / model / AppContactUsItem.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.ecomp.model;
21
22 import javax.persistence.Entity;
23 import javax.persistence.Id;
24
25 import org.openecomp.portalsdk.core.domain.support.DomainVo;
26
27 import com.fasterxml.jackson.annotation.JsonInclude;
28
29 /**
30  * Carries row information for the apps table on the Contact Us page.
31  */
32 @Entity
33 @JsonInclude(JsonInclude.Include.NON_NULL)
34 public class AppContactUsItem extends DomainVo {
35
36         private static final long serialVersionUID = 6964210807573346262L;
37
38         @Id
39         private Long appId;
40         private String appName;
41         private String description;
42         private String contactName;
43         private String contactEmail;
44         private String url;
45         private String activeYN;
46
47         public Long getAppId() {
48                 return appId;
49         }
50
51         public void setAppId(Long appId) {
52                 this.appId = appId;
53         }
54
55         public String getAppName() {
56                 return appName;
57         }
58
59         public void setAppName(String appName) {
60                 this.appName = appName;
61         }
62
63         public String getDescription() {
64                 return description;
65         }
66
67         public void setDescription(String description) {
68                 this.description = description;
69         }
70
71         public String getContactName() {
72                 return contactName;
73         }
74
75         public void setContactName(String contactName) {
76                 this.contactName = contactName;
77         }
78
79         public String getContactEmail() {
80                 return contactEmail;
81         }
82
83         public void setContactEmail(String contactEmail) {
84                 this.contactEmail = contactEmail;
85         }
86
87         public String getUrl() {
88                 return url;
89         }
90
91         public void setUrl(String url) {
92                 this.url = url;
93         }
94
95         public String getActiveYN() {
96                 return activeYN;
97         }
98
99         public void setActiveYN(String activeYN) {
100                 this.activeYN = activeYN;
101         }
102
103
104 }