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

dev.jbang.catalog.TemplateProperty Maven / Gradle / Ivy

There is a newer version: 0.121.0
Show newest version
package dev.jbang.catalog;

import java.util.Objects;

import com.google.gson.annotations.SerializedName;

/**
 * Class representing a property in the JBang catalog templates.
 */
public class TemplateProperty {

	private String description;
	@SerializedName(value = "default")
	private String defaultValue;

	public TemplateProperty(String description, String defaultValue) {
		this.description = description;
		this.defaultValue = defaultValue;
	}

	public String getDefaultValue() {
		return defaultValue;
	}

	public String getDescription() {
		return description;
	}

	@Override
	public boolean equals(Object o) {
		if (this == o)
			return true;
		if (o == null || getClass() != o.getClass())
			return false;
		TemplateProperty that = (TemplateProperty) o;
		return Objects.equals(description, that.description) && Objects.equals(defaultValue, that.defaultValue);
	}

	@Override
	public int hashCode() {
		return Objects.hash(description, defaultValue);
	}

	@Override
	public String toString() {
		return "TemplateProperty{" +
				"description='" + description + '\'' +
				", defaultValue='" + defaultValue + '\'' +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy