nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / domain / AppContactUsTransportModel.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 /**
23  * An easily serializable-as-JSON version of
24  * {@link org.openecomp.portalapp.portal.domain.AppContactUs}, with the
25  * application ID instead of the EPApp object.
26  */
27 public class AppContactUsTransportModel {
28
29         private Long appId;
30         private String appName;
31         private String description;
32         private String contactEmail;
33         private String url;
34         private String activeYN;
35
36         public String getDescription() {
37                 return description;
38         }
39
40         public void setDescription(String description) {
41                 this.description = description;
42         }
43
44         public String getContactEmail() {
45                 return contactEmail;
46         }
47
48         public void setContactEmail(String contactEmail) {
49                 this.contactEmail = contactEmail;
50         }
51
52         public String getUrl() {
53                 return url;
54         }
55
56         public void setUrl(String url) {
57                 this.url = url;
58         }
59
60         public String getActiveYN() {
61                 return activeYN;
62         }
63
64         public void setActiveYN(String activeYN) {
65                 this.activeYN = activeYN;
66         }
67
68         public String getAppName() {
69                 return appName;
70         }
71
72         public void setAppName(String appName) {
73                 this.appName = appName;
74         }
75
76         public Long getAppId() {
77                 return appId;
78         }
79
80         public void setAppId(Long appId) {
81                 this.appId = appId;
82         }
83
84 }