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

cz.active24.client.fred.data.update.domain.DomainRemData 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 DomainRemData#admin} - a list of contact handles that will be removed from the list of administration contacts of this domain
  • *
* * @see FRED documentation */ public class DomainRemData implements Serializable { private List admin; public DomainRemData() { } public DomainRemData(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("DomainRemData{"); sb.append("admin=").append(admin); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy