All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.cinovo.cloudconductor.api.model.ConfigValues Maven / Gradle / Ivy

package de.cinovo.cloudconductor.api.model;

import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeInfo.Id;

import java.util.ArrayList;
import java.util.List;

/**
 * Copyright 2020 Cinovo AG
*
* * @author mweise */ @JsonTypeInfo(use = Id.CLASS) public class ConfigValues { private final List elements; public ConfigValues() { this(new ArrayList<>()); } public ConfigValues(List elements) { this.elements = new ArrayList<>(elements); } /** * @return the elements */ public List getElements() { return this.elements; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy