com.github.skjolber.log.domain.model.Key Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of log-domain-codegen Show documentation
Show all versions of log-domain-codegen Show documentation
Source-code generator for log-domain yaml format.
package com.github.skjolber.log.domain.model;
public class Key {
private String id;
private String name;
private String description;
private String type;
private String format;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
@Override
public String toString() {
return "Key [id=" + id + ", name=" + name + ", description=" + description + ", type=" + type + ", format="
+ format + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy