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
10 * ZTE - initial API and implementation and/or initial documentation
12 package org.onap.sdc.workflowdesigner.resources.entity;
17 public class CategoryData {
18 private I18nString displayName;
20 private boolean collapse;
25 public CategoryData() {
32 public CategoryData(I18nString displayName) {
34 this.displayName = displayName;
38 * @return the displayName
40 public I18nString getDisplayName() {
45 * @param displayName the displayName to set
47 public void setDisplayName(I18nString displayName) {
48 this.displayName = displayName;
52 * @return the collapse
54 public boolean isCollapse() {
59 * @param collapse the collapse to set
61 public void setCollapse(boolean collapse) {
62 this.collapse = collapse;