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

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

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

public class GenerateUserDomainNameRequest {

    // Field for effective time
    private String effectiveTime;

    public String getEffectiveTime() {
        return this.effectiveTime;
    }

    public void setEffectiveTime(String effectiveTime) {
        if (effectiveTime == null || effectiveTime.trim().isEmpty()) {
            throw new IllegalArgumentException("Effective Time cannot be null or empty.");
        }
        this.effectiveTime = effectiveTime;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy