public interface interfaceObject extends Serializable {

public void setLogonID(String logonID);
public String getLogonID();
}


public class LogonInitOp extends LogonBaseOp {
// how to get interface class from here …?
}


how can I get the interfaceObject.getLogonID from the class LogonInitOp ?