be3baa0c8b8b054b074eb5d489e25b5a4624de43
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / AppContactUs.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.domain;
21
22 import org.openecomp.portalsdk.core.domain.support.DomainVo;
23
24 /**
25  * Models rows in the fn_app_contact_us table added for 1610.1.
26  */
27 public class AppContactUs extends DomainVo {
28
29         private static final long serialVersionUID = -2742197830465055134L;
30
31         private EPApp app;
32         private String description;
33         private String contactEmail;
34         private String contactName;
35         private String url;
36         private String activeYN;
37
38         public EPApp getApp() {
39                 return app;
40         }
41
42         public void setApp(EPApp app) {
43                 this.app = app;
44         }
45
46         public String getDescription() {
47                 return description;
48         }
49
50         public void setDescription(String description) {
51                 this.description = description;
52         }
53
54         public String getContactEmail() {
55                 return contactEmail;
56         }
57
58         public void setContactEmail(String contactEmail) {
59                 this.contactEmail = contactEmail;
60         }
61
62         public String getContactName() {
63                 return contactName;
64         }
65
66         public void setContactName(String contactName) {
67                 this.contactName = contactName;
68         }
69
70         public String getUrl() {
71                 return url;
72         }
73
74         public void setUrl(String url) {
75                 this.url = url;
76         }
77
78         public String getActiveYN() {
79                 return activeYN;
80         }
81
82         public void setActiveYN(String activeYN) {
83                 this.activeYN = activeYN;
84         }
85
86 }