[PORTAL-7] Rebase
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / domain / AppContactUs.java
1 /*-\r
2  * ================================================================================\r
3  * ECOMP Portal\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ================================================================================\r
19  */\r
20 package org.openecomp.portalapp.portal.domain;\r
21 \r
22 import org.openecomp.portalsdk.core.domain.support.DomainVo;\r
23 \r
24 /**\r
25  * Models rows in the fn_app_contact_us table added for 1610.1.\r
26  */\r
27 public class AppContactUs extends DomainVo {\r
28 \r
29         private static final long serialVersionUID = -2742197830465055134L;\r
30 \r
31         private EPApp app;\r
32         private String description;\r
33         private String contactEmail;\r
34         private String contactName;\r
35         private String url;\r
36         private String activeYN;\r
37 \r
38         public EPApp getApp() {\r
39                 return app;\r
40         }\r
41 \r
42         public void setApp(EPApp app) {\r
43                 this.app = app;\r
44         }\r
45 \r
46         public String getDescription() {\r
47                 return description;\r
48         }\r
49 \r
50         public void setDescription(String description) {\r
51                 this.description = description;\r
52         }\r
53 \r
54         public String getContactEmail() {\r
55                 return contactEmail;\r
56         }\r
57 \r
58         public void setContactEmail(String contactEmail) {\r
59                 this.contactEmail = contactEmail;\r
60         }\r
61 \r
62         public String getContactName() {\r
63                 return contactName;\r
64         }\r
65 \r
66         public void setContactName(String contactName) {\r
67                 this.contactName = contactName;\r
68         }\r
69 \r
70         public String getUrl() {\r
71                 return url;\r
72         }\r
73 \r
74         public void setUrl(String url) {\r
75                 this.url = url;\r
76         }\r
77 \r
78         public String getActiveYN() {\r
79                 return activeYN;\r
80         }\r
81 \r
82         public void setActiveYN(String activeYN) {\r
83                 this.activeYN = activeYN;\r
84         }\r
85 \r
86 }\r