org.tiogasolutions.jobs.pub.DomainProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tioga-jobs-pub Show documentation
Show all versions of tioga-jobs-pub Show documentation
Tioga Solutions' Job Server
The newest version!
package org.tiogasolutions.jobs.pub;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class DomainProfile {
private final String domainName;
@JsonCreator
public DomainProfile(@JsonProperty("domainName") String domainName) {
this.domainName = domainName;
}
public String getDomainName() {
return domainName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy