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

io.fabric8.maven.helm.Chart Maven / Gradle / Ivy

There is a newer version: 3.2.13
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 * 

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.fabric8.maven.helm; import com.fasterxml.jackson.annotation.JsonInclude; import java.util.List; import java.util.Map; /** * Represents the Helm Chart metadata DTO * which is usually saved as Chart.yaml */ @JsonInclude(JsonInclude.Include.NON_EMPTY) public class Chart { private String name; private String home; private String version; private String description; private List maintainers; private String details; private List dependencies; private Map preinstall; @Override public String toString() { return "Chart{" + "name='" + name + '\'' + ", version='" + version + '\'' + '}'; } public List getDependencies() { return dependencies; } public void setDependencies(List dependencies) { this.dependencies = dependencies; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getDetails() { return details; } public void setDetails(String details) { this.details = details; } public String getHome() { return home; } public void setHome(String home) { this.home = home; } public List getMaintainers() { return maintainers; } public void setMaintainers(List maintainers) { this.maintainers = maintainers; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Map getPreinstall() { return preinstall; } public void setPreinstall(Map preinstall) { this.preinstall = preinstall; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy