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

cz.active24.client.fred.data.sendauthinfo.nsset.NssetSendAuthInfoRequest Maven / Gradle / Ivy

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

import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;
import cz.active24.client.fred.data.sendauthinfo.SendAuthInfoRequest;

import java.io.Serializable;

/**
 * A nsset sendAuthInfo command is used to provide the transfer password of an nsset to the technical contacts of the nsset.
 *
 * 
    *
  • * {@link NssetSendAuthInfoRequest#nssetId} - an nsset handle *
  • *
* * @see FRED documentation */ public class NssetSendAuthInfoRequest extends EppRequest implements Serializable, SendAuthInfoRequest { private String nssetId; public NssetSendAuthInfoRequest(String nssetId) { setServerObjectType(ServerObjectType.NSSET); this.nssetId = nssetId; } public String getNssetId() { return nssetId; } protected void setNssetId(String nssetId) { this.nssetId = nssetId; } @Override public String toString() { final StringBuffer sb = new StringBuffer("NssetSendAuthInfoRequest{"); sb.append("nssetId='").append(nssetId).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy