package com.ausregistry.jtoolkit2.se.fund; import com.ausregistry.jtoolkit2.se.ExtendedObjectType; import com.ausregistry.jtoolkit2.se.InfoCommand; /** * Use this to request information about fund objects. Instances of this class * generate RFC5730 compliant fund info EPP command service elements via the toXML method. * * @see com.ausregistry.jtoolkit2.se.fund.FundInfoResponse */ public class FundInfoCommand extends InfoCommand { /** * Create a fund info command. */ public FundInfoCommand() { super(ExtendedObjectType.FUND); } }