nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / ecomp / model / AppCategoryFunctionsItem.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 functional table on the Contact Us page.
31  */
32 @Entity
33 @JsonInclude(JsonInclude.Include.NON_NULL)
34 public class AppCategoryFunctionsItem extends DomainVo {
35
36         private static final long serialVersionUID = -1573834082471206458L;
37
38         @Id
39         private String rowId;
40         private String appId;
41         private String application;
42         private String category;
43         private String functions;
44
45         public String getRowId() {
46                 return rowId;
47         }
48
49         public void setRowId(String rowId) {
50                 this.rowId = rowId;
51         }
52
53         public String getAppId() {
54                 return appId;
55         }
56         
57         public void setAppId(String appId) {
58                 this.appId = appId;
59         }
60         
61         public String getApplication() {
62                 return application;
63         }
64
65         public void setApplication(String appName) {
66                 this.application = appName;
67         }
68
69         public String getCategory() {
70                 return category;
71         }
72
73         public void setCategory(String category) {
74                 this.category = category;
75         }
76
77         public String getFunctions() {
78                 return functions;
79         }
80
81         public void setFunctions(String functions) {
82                 this.functions = functions;
83         }
84 }