Author: prabath
Date: Wed Jan  9 01:32:58 2008
New Revision: 12029

Log:

OpenID integration

Modified:
   
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/cards/CardIssuer.java

Modified: 
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/cards/CardIssuer.java
==============================================================================
--- 
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/cards/CardIssuer.java
  (original)
+++ 
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/cards/CardIssuer.java
  Wed Jan  9 01:32:58 2008
@@ -189,7 +189,10 @@
         card.setTimeIssued(now);
         card.setTimeExpires(exp);
 
-        card.setCardName("WSO2 Managed Card");
+        if (!isOpenIdInfoCard)
+            card.setCardName("WSO2 Managed Card");
+        else
+            card.setCardName("WSO2 OpenID Information Card");
 
         byte[] imgBytes = getCardImageBytes();
         CardImage img = new CardImage("image/jpeg", Base64.encode(imgBytes));

_______________________________________________
Identity-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/identity-dev

Reply via email to