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

org.example.domain.model.ModifyUserDomainNameRequest Maven / Gradle / Ivy

The newest version!
package org.example.domain.model;

public class ModifyUserDomainNameRequest {

    private String subdomain;

    public String getSubdomain() {
        return this.subdomain;
    }

    public void setSubdomain(String subdomain) {
        if (subdomain == null || subdomain.trim().isEmpty()) {
            throw new IllegalArgumentException("Subdomain cannot be null or empty.");
        }
        this.subdomain = subdomain;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy