Lines Matching refs:destID

373      * @param destID A set of String that representing the destination site id.
376 * <code>destID</code> that the assertion is created for originally.
378 * created without a <code>destID</code> originally. This String can
386 public Assertion getAssertion(AssertionIDReference idRef, Set destID)
390 return (assertionManager.getAssertion(idRef, destID));
395 if (destID != null && !destID.isEmpty()) {
396 Iterator it = destID.iterator();
421 * @param destID The destination site id requesting the assertion using
423 * <code>destID</code> that the assertion is created for originally.
425 * created without a <code>destID</code> originally. This String can
433 public Assertion getAssertion(AssertionIDReference idRef, String destID)
437 return (assertionManager.getAssertion(idRef, destID));
442 // rpc could not handle destID is null or empty string case
443 if (destID == null || destID.length() == 0) {
444 destID = " ";
447 Base64.encode(SAMLUtils.stringToByteArray(destID)) };
463 * @param destID A Set of String that represents the destination id.
465 * artifact. This String is compared with the <code>destID</code>
472 public Assertion getAssertion(AssertionArtifact artifact, Set destID)
476 return (assertionManager.getAssertion(artifact, destID));
481 if (destID == null || destID.isEmpty()) {
483 "AssertionArtifact, Set): destID set is null");
487 Iterator it = destID.iterator();
508 * @param destID The destination site requesting the assertion using
510 * <code>destID</code> that the artifact is created for originally.
515 protected Assertion getAssertion(AssertionArtifact artifact, String destID)
519 return (assertionManager.getAssertion(artifact, destID));
525 Base64.encode(SAMLUtils.stringToByteArray(destID)) };