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

cz.active24.client.fred.data.update.nsset.NssetAddData Maven / Gradle / Ivy

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

import cz.active24.client.fred.data.common.nsset.NameserverData;

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

/**
 * A nsset update command is used to alter details of an nsset.
 *
 * 
    *
  • {@link NssetAddData#ns} - a nameserver(s), see {@link NameserverData}
  • *
  • {@link NssetAddData#tech} - a handle of a contact that will be added as a technical contact
  • *
* * @see FRED documentation */ public class NssetAddData implements Serializable { private List ns; private List tech; public NssetAddData() { } public List getNs() { return ns; } public void setNs(List ns) { this.ns = ns; } public List getTech() { return tech; } public void setTech(List tech) { this.tech = tech; } @Override public String toString() { final StringBuffer sb = new StringBuffer("NssetAddData{"); sb.append("ns=").append(ns); sb.append(", tech=").append(tech); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy