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

cz.active24.client.fred.data.update.domain.DomainAddData Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
package cz.active24.client.fred.data.update.domain;

import java.io.Serializable;
import java.util.List;

/**
 * A domain update command is used to alter details of a domain.
 *
 * 
    *
  • {@link DomainAddData#admin} - a list of contact handles that will be added to the list of administration contacts of this domain
  • *
* * @see FRED documentation */ public class DomainAddData implements Serializable { private List admin; public DomainAddData() { } public DomainAddData(List adminContacts) { admin = adminContacts; } public List getAdmin() { return admin; } public void setAdmin(List admin) { this.admin = admin; } @Override public String toString() { final StringBuffer sb = new StringBuffer("DomainAddData{"); sb.append("admin=").append(admin); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy