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

cz.active24.client.fred.data.info.nsset.NssetInfoRequest Maven / Gradle / Ivy

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

import cz.active24.client.fred.data.info.InfoRequest;
import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;

import java.io.Serializable;

/**
 * Nsset info request.
 *
 * 
    *
  • {@link NssetInfoRequest#id} – a nsset handle
  • *
* * @see FRED documentation */ public class NssetInfoRequest extends EppRequest implements Serializable, InfoRequest { private String id; public NssetInfoRequest(String nssetId) { setServerObjectType(ServerObjectType.NSSET); this.id = nssetId; } public String getId() { return id; } protected void setId(String id) { this.id = id; } @Override public String toString() { final StringBuffer sb = new StringBuffer("NssetInfoRequest{"); sb.append("id='").append(id).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy