} else if (this.pr.useLogging()) {
logger.debug(dbg);
}
}
final Delegate delegate = new Delegate(credential,
csd,
this.d.delegationFactoryUrl,
certToSign,
this.d.delegationLifetime,
true);
delegate.validateAll();
if (this.d.dryrun) {
if (this.pr.enabled()) {
final String msg = "Dryrun, not calling delegation service.";
if (this.pr.useThis()) {
// part of PRCODE_CREATE__DRYRUN as a whole
this.pr.infoln(PrCodes.CREATE__DRYRUN, msg);
} else if (this.pr.useLogging()) {
logger.info(msg);
}
}
return; // *** EARLY RETURN ***
}
final EndpointReferenceType epr = delegate.delegate();
//this.delegationWasPerformed = true;
final OptionalParameters_Type opt = this.d.optionalParameters;
if (opt == null) {