04ce29ea1a32214d4566970eb0cb686931b13dd4
[sdc/sdc-workflow-designer.git] /
1 /**
2  * Copyright (c) 2018 ZTE Corporation.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the Apache License, Version 2.0
5  * and the Eclipse Public License v1.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *     ZTE - initial API and implementation and/or initial documentation
11  */
12 package org.onap.sdc.workflowdesigner.resources.entity;
13
14 /**
15  *
16  */
17 public class CategoryData {
18   private I18nString displayName;
19
20   private boolean collapse;
21   
22   /**
23    * 
24    */
25   public CategoryData() {
26     super();
27   }
28
29   /**
30    * @param displayName
31    */
32   public CategoryData(I18nString displayName) {
33     super();
34     this.displayName = displayName;
35   }
36
37   /**
38    * @return the displayName
39    */
40   public I18nString getDisplayName() {
41     return displayName;
42   }
43
44   /**
45    * @param displayName the displayName to set
46    */
47   public void setDisplayName(I18nString displayName) {
48     this.displayName = displayName;
49   }
50
51   /**
52    * @return the collapse
53    */
54   public boolean isCollapse() {
55     return collapse;
56   }
57
58   /**
59    * @param collapse the collapse to set
60    */
61   public void setCollapse(boolean collapse) {
62     this.collapse = collapse;
63   }
64
65 }