org.obiba.mica.micaConfig.domain.ProjectConfig.java Source code

Java tutorial

Introduction

Here is the source code for org.obiba.mica.micaConfig.domain.ProjectConfig.java

Source

/*
 * Copyright (c) 2018 OBiBa. All rights reserved.
 *
 * This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.obiba.mica.micaConfig.domain;

import com.google.common.collect.Maps;
import org.obiba.mica.core.domain.LocalizedString;

import java.util.Map;

public class ProjectConfig extends EntityConfig {

    private Map<String, LocalizedString> properties;

    public Map<String, LocalizedString> getProperties() {
        return properties == null ? properties = Maps.newHashMap() : properties;
    }

    public void setProperties(Map<String, LocalizedString> properties) {
        this.properties = properties;
    }
}