Lines Matching refs:append

67         buff.append("<EntityDescriptor\n")
68 .append(" xmlns=\"urn:liberty:metadata:2003-08\"\n")
69 .append(" providerID=\"" + entityId + "\">\n");
90 buff.append("</EntityDescriptor>\n");
107 buff.append(" <IDPDescriptor\n")
108 .append(" protocolSupportEnumeration=")
109 .append("\"urn:liberty:iff:2003-08 urn:liberty:iff:2002-12\">\n");
114 buff.append(" <KeyDescriptor use=\"signing\">\n")
115 .append(" <KeyInfo xmlns=\"")
116 .append(IDFFMetaSecurityUtils.NS_XMLSIG)
117 .append("\">\n")
118 .append(" <X509Data>\n")
119 .append(" <X509Certificate>\n")
120 .append(idpSX509Cert)
121 .append(" </X509Certificate>\n")
122 .append(" </X509Data>\n")
123 .append(" </KeyInfo>\n")
124 .append( " </KeyDescriptor>\n");
130 buff.append(" <KeyDescriptor use=\"encryption\">\n")
131 .append(" <EncryptionMethod>http://www.w3.org/2001/04/xmlenc#aes128-cbc</EncryptionMethod>\n")
132 .append(" <KeySize>128</KeySize>\n")
133 .append(" <KeyInfo xmlns=\"")
134 .append(IDFFMetaSecurityUtils.NS_XMLSIG)
135 .append("\">\n")
136 .append(" <X509Data>\n")
137 .append(" <X509Certificate>\n")
138 .append(idpEX509Cert)
139 .append(" </X509Certificate>\n")
140 .append(" </X509Data>\n")
141 .append(" </KeyInfo>\n")
142 .append(" </KeyDescriptor>\n");
144 buff.append(" <SoapEndpoint>")
145 .append(url)
146 .append("/SOAPReceiver")
147 .append(maStr)
148 .append("</SoapEndpoint>\n")
149 .append(" <SingleLogoutServiceURL>")
150 .append(url)
151 .append("/ProcessLogout")
152 .append(maStr)
153 .append("</SingleLogoutServiceURL>\n")
154 .append(" <SingleLogoutServiceReturnURL>")
155 .append(url)
156 .append("/ReturnLogout")
157 .append(maStr)
158 .append("</SingleLogoutServiceReturnURL>\n")
159 .append(" <FederationTerminationServiceURL>")
160 .append(url)
161 .append("/ProcessTermination")
162 .append(maStr)
163 .append("</FederationTerminationServiceURL>\n")
164 .append(" <FederationTerminationServiceReturnURL>")
165 .append(url)
166 .append("/ReturnTermination")
167 .append(maStr)
168 .append("</FederationTerminationServiceReturnURL>\n")
169 .append(" <FederationTerminationNotificationProtocolProfile>http://projectliberty.org/profiles/fedterm-sp-http</FederationTerminationNotificationProtocolProfile>\n")
170 .append(" <FederationTerminationNotificationProtocolProfile>http://projectliberty.org/profiles/fedterm-sp-soap</FederationTerminationNotificationProtocolProfile>\n")
171 .append(" <SingleLogoutProtocolProfile>http://projectliberty.org/profiles/slo-sp-http</SingleLogoutProtocolProfile>\n")
172 .append(" <SingleLogoutProtocolProfile>http://projectliberty.org/profiles/slo-sp-soap</SingleLogoutProtocolProfile>\n")
173 .append(" <RegisterNameIdentifierProtocolProfile>http://projectliberty.org/profiles/rni-sp-http</RegisterNameIdentifierProtocolProfile>\n")
174 .append(" <RegisterNameIdentifierProtocolProfile>http://projectliberty.org/profiles/rni-sp-soap</RegisterNameIdentifierProtocolProfile>\n")
175 .append(" <RegisterNameIdentifierServiceURL>")
176 .append(url)
177 .append("/ProcessRegistration")
178 .append(maStr)
179 .append("</RegisterNameIdentifierServiceURL>\n")
180 .append(" <RegisterNameIdentifierServiceReturnURL>")
181 .append(url)
182 .append("/ReturnRegistration")
183 .append(maStr)
184 .append("</RegisterNameIdentifierServiceReturnURL>\n")
185 .append(" <SingleSignOnServiceURL>")
186 .append(url)
187 .append("/SingleSignOnService")
188 .append(maStr)
189 .append("</SingleSignOnServiceURL>\n")
190 .append(" <SingleSignOnProtocolProfile>http://projectliberty.org/profiles/brws-art</SingleSignOnProtocolProfile>\n")
191 .append(" <SingleSignOnProtocolProfile>http://projectliberty.org/profiles/brws-post</SingleSignOnProtocolProfile>\n")
192 .append(" <SingleSignOnProtocolProfile>http://projectliberty.org/profiles/lecp</SingleSignOnProtocolProfile>\n")
193 .append(" </IDPDescriptor>\n");
208 buff.append(" <SPDescriptor\n")
209 .append(" protocolSupportEnumeration=\n")
210 .append(" \"urn:liberty:iff:2003-08 urn:liberty:iff:2002-12\">\n");
215 buff.append(" <KeyDescriptor use=\"signing\">\n")
216 .append(" <KeyInfo xmlns=\"")
217 .append(IDFFMetaSecurityUtils.NS_XMLSIG)
218 .append("\">\n")
219 .append(" <X509Data>\n")
220 .append(" <X509Certificate>\n")
221 .append(spSX509Cert )
222 .append(" </X509Certificate>\n")
223 .append(" </X509Data>\n")
224 .append(" </KeyInfo>\n")
225 .append(" </KeyDescriptor>\n");
231 buff.append(" <KeyDescriptor use=\"encryption\">\n")
232 .append(" <EncryptionMethod>http://www.w3.org/2001/04/xmlenc#aes128-cbc</EncryptionMethod>\n")
233 .append(" <KeySize>128</KeySize>\n")
234 .append(" <KeyInfo xmlns=\"")
235 .append(IDFFMetaSecurityUtils.NS_XMLSIG )
236 .append("\">\n")
237 .append(" <X509Data>\n")
238 .append(" <X509Certificate>\n")
239 .append(spEX509Cert )
240 .append(" </X509Certificate>\n")
241 .append(" </X509Data>\n")
242 .append(" </KeyInfo>\n")
243 .append(" </KeyDescriptor>\n");
245 buff.append(" <SoapEndpoint>")
246 .append(url )
247 .append("/SOAPReceiver")
248 .append(maStr )
249 .append("</SoapEndpoint>\n")
250 .append(" <SingleLogoutServiceURL>")
251 .append(url )
252 .append("/ProcessLogout")
253 .append(maStr)
254 .append("</SingleLogoutServiceURL>\n")
255 .append(" <SingleLogoutServiceReturnURL>")
256 .append(url )
257 .append("/ReturnLogout")
258 .append(maStr)
259 .append("</SingleLogoutServiceReturnURL>\n")
260 .append(" <FederationTerminationServiceURL>")
261 .append(url )
262 .append("/ProcessTermination")
263 .append(maStr)
264 .append("</FederationTerminationServiceURL>\n")
265 .append(" <FederationTerminationServiceReturnURL>")
266 .append(url )
267 .append("/ReturnTermination")
268 .append(maStr)
269 .append("</FederationTerminationServiceReturnURL>\n")
270 .append(" <FederationTerminationNotificationProtocolProfile>http://projectliberty.org/profiles/fedterm-idp-http</FederationTerminationNotificationProtocolProfile>\n")
271 .append(" <FederationTerminationNotificationProtocolProfile>http://projectliberty.org/profiles/fedterm-idp-soap</FederationTerminationNotificationProtocolProfile>\n")
272 .append(" <SingleLogoutProtocolProfile>http://projectliberty.org/profiles/slo-idp-http</SingleLogoutProtocolProfile>\n")
273 .append(" <SingleLogoutProtocolProfile>http://projectliberty.org/profiles/slo-idp-soap</SingleLogoutProtocolProfile>\n")
274 .append(" <RegisterNameIdentifierProtocolProfile>http://projectliberty.org/profiles/rni-idp-http</RegisterNameIdentifierProtocolProfile>\n")
275 .append(" <RegisterNameIdentifierProtocolProfile>http://projectliberty.org/profiles/rni-idp-soap</RegisterNameIdentifierProtocolProfile>\n")
276 .append(" <RegisterNameIdentifierServiceURL>")
277 .append(url)
278 .append("/ProcessRegistration")
279 .append(maStr)
280 .append("</RegisterNameIdentifierServiceURL>\n")
281 .append(" <RegisterNameIdentifierServiceReturnURL>")
282 .append(url )
283 .append("/ReturnRegistration")
284 .append(maStr)
285 .append("</RegisterNameIdentifierServiceReturnURL>\n")
286 .append(" <AssertionConsumerServiceURL id=\"1\" isDefault=\"true\">")
287 .append(url)
288 .append("/AssertionConsumerService")
289 .append(maStr)
290 .append("</AssertionConsumerServiceURL>\n")
291 .append(" <AuthnRequestsSigned>false</AuthnRequestsSigned>\n")
292 .append(" </SPDescriptor>\n");
300 buff.append("<EntityConfig xmlns=\"urn:sun:fm:ID-FF:entityconfig\"\n")
301 .append(" hosted=\"1\"\n")
302 .append(" entityID=\"")
303 .append(entityId)
304 .append("\">\n\n");
325 buff.append("</EntityConfig>\n");
346 buff.append(" <IDPDescriptorConfig metaAlias=\"")
347 .append(idpAlias)
348 .append("\">\n")
349 .append(" <Attribute name=\"")
350 .append(IFSConstants.PROVIDER_STATUS)
351 .append( "\">\n")
352 .append(" <Value>active</Value>\n")
353 .append(" </Attribute>\n")
354 .append(" <Attribute name=\"")
355 .append(IFSConstants.PROVIDER_DESCRIPTION)
356 .append("\">\n")
357 .append(" <Value></Value>\n")
358 .append(" </Attribute>\n")
359 .append(" <Attribute name=\"")
360 .append(IFSConstants.SIGNING_CERT_ALIAS)
361 .append("\">\n")
362 .append(" <Value>")
363 .append(idpSCertAlias)
364 .append("</Value>\n")
365 .append(" </Attribute>\n")
366 .append(" <Attribute name=\"")
367 .append(IFSConstants.ENCRYPTION_CERT_ALIAS)
368 .append("\">\n")
369 .append(" <Value>")
370 .append(idpECertAlias)
371 .append("</Value>\n")
372 .append(" </Attribute>\n")
373 .append(" <Attribute name=\"")
374 .append(IFSConstants.ENABLE_NAMEID_ENCRYPTION)
375 .append("\">\n")
376 .append(" <Value>false</Value>\n")
377 .append(" </Attribute>\n")
378 .append(" <Attribute name=\"")
379 .append(IFSConstants.GENERATE_BOOTSTRAPPING)
380 .append("\">\n")
381 .append(" <Value>true</Value>\n")
382 .append(" </Attribute>\n")
383 .append(" <Attribute name=\"")
384 .append(IFSConstants.RESPONDS_WITH)
385 .append("\">\n")
386 .append(" <Value></Value>\n")
387 .append(" </Attribute>\n")
388 .append(" <Attribute name=\"")
389 .append(IFSConstants.FS_USER_PROVIDER_CLASS)
390 .append("\">\n")
391 .append(" <Value>com.sun.identity.federation.accountmgmt.DefaultFSUserProvider</Value>\n")
392 .append(" </Attribute>\n")
393 .append(" <Attribute name=\"")
394 .append(IFSConstants.NAMEID_IMPL_CLASS)
395 .append("\">\n")
396 .append(" <Value>com.sun.identity.federation.services.util.FSNameIdentifierImpl</Value>\n")
397 .append(" </Attribute>\n")
398 .append(" <Attribute name=\"")
399 .append(IFSConstants.AUTH_TYPE)
400 .append("\">\n")
401 .append(" <Value>local</Value>\n")
402 .append(" </Attribute>\n")
403 .append(" <Attribute name=\"")
404 .append(IFSConstants.REGISTRATION_DONE_URL)
405 .append("\">\n")
406 .append(" <Value></Value>\n")
407 .append(" </Attribute>\n")
408 .append(" <Attribute name=\"")
409 .append(IFSConstants.TERMINATION_DONE_URL)
410 .append("\">\n")
411 .append(" <Value></Value>\n")
412 .append(" </Attribute>\n")
413 .append(" <Attribute name=\"")
414 .append(IFSConstants.LOGOUT_DONE_URL)
415 .append("\">\n")
416 .append(" <Value></Value>\n")
417 .append(" </Attribute>\n")
418 .append(" <Attribute name=\"")
419 .append(IFSConstants.LISTOFCOTS_PAGE_URL)
420 .append("\">\n")
421 .append(" <Value></Value>\n")
422 .append(" </Attribute>\n")
423 .append(" <Attribute name=\"")
424 .append(IFSConstants.ERROR_PAGE_URL)
425 .append("\">\n")
426 .append(" <Value></Value>\n")
427 .append(" </Attribute>\n")
428 .append(" <Attribute name=\"")
429 .append(IFSConstants.PROVIDER_HOME_PAGE_URL)
430 .append("\">\n")
431 .append(" <Value></Value>\n")
432 .append(" </Attribute>\n")
433 .append(" <Attribute name=\"")
434 .append(IFSConstants.ASSERTION_INTERVAL)
435 .append("\">\n")
436 .append(" <Value>60</Value>\n")
437 .append(" </Attribute>\n")
438 .append(" <Attribute name=\"")
439 .append(IFSConstants.CLEANUP_INTERVAL)
440 .append("\">\n")
441 .append(" <Value>180</Value>\n")
442 .append(" </Attribute>\n")
443 .append(" <Attribute name=\"")
444 .append(IFSConstants.ARTIFACT_TIMEOUT)
445 .append("\">\n")
446 .append(" <Value>120</Value>\n")
447 .append(" </Attribute>\n")
448 .append(" <Attribute name=\"")
449 .append(IFSConstants.ASSERTION_LIMIT)
450 .append("\">\n")
451 .append(" <Value>0</Value>\n")
452 .append(" </Attribute>\n")
453 .append(" <Attribute name=\"")
454 .append(IFSConstants.ASSERTION_ISSUER)
455 .append("\">\n")
456 .append(" <Value></Value>\n")
457 .append(" </Attribute>\n")
458 .append(" <Attribute name=\"")
459 .append(IFSConstants.ATTRIBUTE_PLUGIN)
460 .append("\">\n")
461 .append(" <Value></Value>\n")
462 .append(" </Attribute>\n")
463 .append(" <Attribute name=\"")
464 .append(IFSConstants.IDP_ATTRIBUTE_MAP)
465 .append("\">\n")
466 .append(" <Value></Value>\n")
467 .append(" </Attribute>\n")
468 .append(" <Attribute name=\"")
469 .append(IFSConstants.DEFAULT_AUTHNCONTEXT)
470 .append("\">\n")
471 .append(" <Value>")
472 .append(IFSConstants.DEFAULT_AUTHNCONTEXT_PASSWORD)
473 .append("</Value>\n")
474 .append(" </Attribute>\n")
475 .append(" <Attribute name=\"")
476 .append(IFSConstants.IDP_AUTHNCONTEXT_MAPPING)
477 .append("\">\n")
478 .append(" <Value>context=")
479 .append(IFSConstants.DEFAULT_AUTHNCONTEXT_PASSWORD)
480 .append("|key=module|value=DataStore|level=0</Value>\n")
481 .append(" </Attribute>\n")
482 .append(" <Attribute name=\"")
483 .append(IFSConstants.ENABLE_AUTO_FEDERATION)
484 .append("\">\n")
485 .append(" <Value>false</Value>\n")
486 .append(" </Attribute>\n")
487 .append(" <Attribute name=\"")
488 .append(IFSConstants.AUTO_FEDERATION_ATTRIBUTE)
489 .append("\">\n")
490 .append(" <Value></Value>\n")
491 .append(" </Attribute>\n")
492 .append(" <Attribute name=\"")
493 .append(IFSConstants.ATTRIBUTE_MAPPER_CLASS)
494 .append("\">\n")
495 .append(" <Value></Value>\n")
496 .append(" </Attribute>\n")
497 .append(" <Attribute name=\"")
498 .append(COTConstants.COT_LIST)
499 .append("\">\n")
500 .append(" </Attribute>\n")
501 .append(" </IDPDescriptorConfig>\n");
520 buff.append(" <SPDescriptorConfig metaAlias=\"")
521 .append(spAlias)
522 .append("\">\n")
523 .append(" <Attribute name=\"")
524 .append(IFSConstants.PROVIDER_STATUS)
525 .append("\">\n")
526 .append(" <Value>active</Value>\n")
527 .append(" </Attribute>\n")
528 .append(" <Attribute name=\"")
529 .append(IFSConstants.PROVIDER_DESCRIPTION)
530 .append("\">\n")
531 .append(" <Value></Value>\n")
532 .append(" </Attribute>\n")
533 .append(" <Attribute name=\"")
534 .append(IFSConstants.SIGNING_CERT_ALIAS)
535 .append("\">\n")
536 .append(" <Value>")
537 .append(spSCertAlias)
538 .append("</Value>\n")
539 .append(" </Attribute>\n")
540 .append(" <Attribute name=\"")
541 .append(IFSConstants.ENCRYPTION_CERT_ALIAS)
542 .append("\">\n")
543 .append(" <Value>")
544 .append(spECertAlias)
545 .append("</Value>\n")
546 .append(" </Attribute>\n")
547 .append(" <Attribute name=\"")
548 .append(IFSConstants.ENABLE_IDP_PROXY)
549 .append("\">\n")
550 .append(" <Value>false</Value>\n")
551 .append(" </Attribute>\n")
552 .append(" <Attribute name=\"")
553 .append(IFSConstants.IDP_PROXY_LIST)
554 .append("\">\n")
555 .append(" <Value></Value>\n")
556 .append(" </Attribute>\n")
557 .append(" <Attribute name=\"")
558 .append(IFSConstants.IDP_PROXY_COUNT)
559 .append("\">\n")
560 .append(" <Value>-1</Value>\n")
561 .append(" </Attribute>\n")
562 .append(" <Attribute name=\"")
563 .append(IFSConstants.USE_INTRODUCTION_FOR_IDP_PROXY)
564 .append("\">\n")
565 .append(" <Value>false</Value>\n")
566 .append(" </Attribute>\n")
567 .append(" <Attribute name=\"")
568 .append(IFSConstants.ENABLE_AFFILIATION)
569 .append("\">\n")
570 .append(" <Value>false</Value>\n")
571 .append(" </Attribute>\n")
572 .append(" <Attribute name=\"")
573 .append(IFSConstants.ENABLE_NAMEID_ENCRYPTION)
574 .append("\">\n")
575 .append(" <Value>false</Value>\n")
576 .append(" </Attribute>\n")
577 .append(" <Attribute name=\"")
578 .append(IFSConstants.SUPPORTED_SSO_PROFILE)
579 .append("\">\n")
580 .append(" <Value>http://projectliberty.org/profiles/brws-art</Value>\n")
581 .append(" <Value>http://projectliberty.org/profiles/brws-post</Value>\n")
582 .append(" <Value>http://projectliberty.org/profiles/wml-post</Value>\n")
583 .append(" <Value>http://projectliberty.org/profiles/lecp</Value>\n")
584 .append(" </Attribute>\n")
585 .append(" <Attribute name=\"")
586 .append(IFSConstants.NAMEID_POLICY)
587 .append("\">\n")
588 .append(" <Value>federated</Value>\n")
589 .append(" </Attribute>\n")
590 .append(" <Attribute name=\"")
591 .append(IFSConstants.FORCE_AUTHN)
592 .append("\">\n")
593 .append(" <Value>false</Value>\n")
594 .append(" </Attribute>\n")
595 .append(" <Attribute name=\"")
596 .append(IFSConstants.IS_PASSIVE)
597 .append("\">\n")
598 .append(" <Value>false</Value>\n")
599 .append(" </Attribute>\n")
600 .append(" <Attribute name=\"")
601 .append(IFSConstants.RESPONDS_WITH)
602 .append("\">\n")
603 .append(" <Value></Value>\n")
604 .append(" </Attribute>\n")
605 .append(" <Attribute name=\"")
606 .append(IFSConstants.FS_USER_PROVIDER_CLASS)
607 .append("\">\n")
608 .append(" <Value>com.sun.identity.federation.accountmgmt.DefaultFSUserProvider</Value>\n")
609 .append(" </Attribute>\n")
610 .append(" <Attribute name=\"")
611 .append(IFSConstants.NAMEID_IMPL_CLASS)
612 .append("\">\n")
613 .append(" <Value>com.sun.identity.federation.services.util.FSNameIdentifierImpl</Value>\n")
614 .append(" </Attribute>\n")
615 .append(" <Attribute name=\"")
616 .append(IFSConstants.AUTH_TYPE)
617 .append("\">\n")
618 .append(" <Value>remote</Value>\n")
619 .append(" </Attribute>\n")
620 .append(" <Attribute name=\"")
621 .append(IFSConstants.REGISTRATION_DONE_URL)
622 .append("\">\n")
623 .append(" <Value></Value>\n")
624 .append(" </Attribute>\n")
625 .append(" <Attribute name=\"")
626 .append(IFSConstants.TERMINATION_DONE_URL)
627 .append("\">\n")
628 .append(" <Value></Value>\n")
629 .append(" </Attribute>\n")
630 .append(" <Attribute name=\"")
631 .append(IFSConstants.LOGOUT_DONE_URL)
632 .append("\">\n")
633 .append(" <Value></Value>\n")
634 .append(" </Attribute>\n")
635 .append(" <Attribute name=\"")
636 .append(IFSConstants.FEDERATION_DONE_URL)
637 .append("\">\n")
638 .append(" <Value></Value>\n")
639 .append(" </Attribute>\n")
640 .append(" <Attribute name=\"")
641 .append(IFSConstants.DOFEDERATE_PAGE_URL)
642 .append("\">\n")
643 .append(" <Value></Value>\n")
644 .append(" </Attribute>\n")
645 .append(" <Attribute name=\"")
646 .append(IFSConstants.LISTOFCOTS_PAGE_URL)
647 .append("\">\n")
648 .append(" <Value></Value>\n")
649 .append(" </Attribute>\n")
650 .append(" <Attribute name=\"")
651 .append(IFSConstants.ERROR_PAGE_URL)
652 .append("\">\n")
653 .append(" <Value></Value>\n")
654 .append(" </Attribute>\n")
655 .append(" <Attribute name=\"")
656 .append(IFSConstants.SSO_FAILURE_REDIRECT_URL)
657 .append("\">\n")
658 .append(" <Value></Value>\n")
659 .append(" </Attribute>\n")
660 .append(" <Attribute name=\"")
661 .append(IFSConstants.PROVIDER_HOME_PAGE_URL)
662 .append("\">\n")
663 .append(" <Value></Value>\n")
664 .append(" </Attribute>\n")
665 .append(" <Attribute name=\"")
666 .append(IFSConstants.DEFAULT_AUTHNCONTEXT)
667 .append("\">\n")
668 .append(" <Value>")
669 .append(IFSConstants.DEFAULT_AUTHNCONTEXT_PASSWORD)
670 .append("</Value>\n")
671 .append(" </Attribute>\n")
672 .append(" <Attribute name=\"")
673 .append(IFSConstants.SP_AUTHNCONTEXT_MAPPING)
674 .append("\">\n")
675 .append(" <Value>context=")
676 .append(IFSConstants.DEFAULT_AUTHNCONTEXT_PASSWORD)
677 .append("|level=0</Value>\n")
678 .append(" </Attribute>\n")
679 .append(" <Attribute name=\"")
680 .append(IFSConstants.ENABLE_AUTO_FEDERATION)
681 .append("\">\n")
682 .append(" <Value>false</Value>\n")
683 .append(" </Attribute>\n")
684 .append(" <Attribute name=\"")
685 .append(IFSConstants.AUTO_FEDERATION_ATTRIBUTE)
686 .append("\">\n")
687 .append(" <Value></Value>\n")
688 .append(" </Attribute>\n")
689 .append(" <Attribute name=\"")
690 .append(IFSConstants.ATTRIBUTE_MAPPER_CLASS)
691 .append("\">\n")
692 .append(" <Value></Value>\n")
693 .append(" </Attribute>\n")
694 .append(" <Attribute name=\"")
695 .append(IFSConstants.SP_ATTRIBUTE_MAP)
696 .append("\">\n")
697 .append(" <Value></Value>\n")
698 .append(" </Attribute>\n")
699 .append(" <Attribute name=\"")
700 .append(IFSConstants.FEDERATION_SP_ADAPTER)
701 .append("\">\n")
702 .append(" <Value>com.sun.identity.federation.plugins.FSDefaultSPAdapter</Value>\n")
703 .append(" </Attribute>\n")
704 .append(" <Attribute name=\"")
705 .append(IFSConstants.FEDERATION_SP_ADAPTER_ENV)
706 .append("\">\n")
707 .append(" <Value></Value>\n")
708 .append(" </Attribute>\n")
709 .append(" <Attribute name=\"")
710 .append( COTConstants.COT_LIST)
711 .append("\">\n")
712 .append(" </Attribute>\n")
713 .append(" </SPDescriptorConfig>\n");
731 buff.append(" <AffiliationDescriptor\n")
732 .append(" affiliationID=\"")
733 .append(entityID)
734 .append("\" \n")
735 .append(" affiliationOwnerID=\"")
736 .append(affiOwnerID)
737 .append("\">\n");
743 buff.append(
752 buff.append(" <KeyDescriptor use=\"signing\">\n")
753 .append(" <KeyInfo xmlns=\"")
754 .append(IDFFMetaSecurityUtils.NS_XMLSIG)
755 .append("\">\n")
756 .append(" <X509Data>\n")
757 .append(" <X509Certificate>\n")
758 .append(affiSX509Cert)
759 .append(" </X509Certificate>\n")
760 .append(" </X509Data>\n")
761 .append(" </KeyInfo>\n")
762 .append( " </KeyDescriptor>\n");
770 buff.append(" <KeyDescriptor use=\"encryption\">\n")
771 .append(" <EncryptionMethod>http://www.w3.org/2001/04/xmlenc#aes128-cbc</EncryptionMethod>\n")
772 .append(" <KeySize>128</KeySize>\n")
773 .append(" <KeyInfo xmlns=\"")
774 .append(IDFFMetaSecurityUtils.NS_XMLSIG)
775 .append("\">\n")
776 .append(" <X509Data>\n")
777 .append(" <X509Certificate>\n")
778 .append(affiEX509Cert)
779 .append(" </X509Certificate>\n")
780 .append(" </X509Data>\n")
781 .append(" </KeyInfo>\n")
782 .append(" </KeyDescriptor>\n");
785 buff.append(" </AffiliationDescriptor>\n");
804 buff.append(" <AffiliationDescriptorConfig metaAlias=\"")
805 .append(affiAlias)
806 .append("\">\n")
807 .append(" <Attribute name=\"")
808 .append(IFSConstants.PROVIDER_DESCRIPTION)
809 .append("\">\n")
810 .append(" <Value></Value>\n")
811 .append(" </Attribute>\n")
812 .append(" <Attribute name=\"")
813 .append(IFSConstants.SIGNING_CERT_ALIAS)
814 .append("\">\n")
815 .append(" <Value>")
816 .append(affiSCertAlias)
817 .append("</Value>\n")
818 .append(" </Attribute>\n")
819 .append(" <Attribute name=\"")
820 .append(IFSConstants.ENCRYPTION_CERT_ALIAS)
821 .append("\">\n")
822 .append(" <Value>")
823 .append(affiECertAlias)
824 .append("</Value>\n")
825 .append(" </Attribute>\n")
826 .append(" </AffiliationDescriptorConfig>\n");