com.enofex.naikan.model.Organization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naikan-model Show documentation
Show all versions of naikan-model Show documentation
The Naikan Model Module for Naikan the software inventory management tool for dev teams driven
by our CI/CD pipeline.
The newest version!
package com.enofex.naikan.model;
public record Organization(String name, String url, String department, String description) {
public static Builder builder() {
return new Builder();
}
public static final class Builder {
private String name;
private String url;
private String department;
private String description;
private Builder() {
}
public Builder name(String name) {
this.name = name;
return this;
}
public Builder department(String department) {
this.department = department;
return this;
}
public Builder url(String url) {
this.url = url;
return this;
}
public Builder description(String description) {
this.description = description;
return this;
}
public Organization build() {
return new Organization(this.name, this.url, this.department, this.description);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy