Author: prabath
Date: Tue Mar 18 00:16:50 2008
New Revision: 14943
Log:
Spelling corrections
Modified:
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/InfoCardDAO.java
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/IssuedTokenDAO.java
Modified:
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/InfoCardDAO.java
==============================================================================
---
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/InfoCardDAO.java
(original)
+++
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/InfoCardDAO.java
Tue Mar 18 00:16:50 2008
@@ -24,7 +24,7 @@
import org.hibernate.Transaction;
import org.wso2.solutions.identity.persistence.HibernateConfig;
import org.wso2.solutions.identity.persistence.dataobject.InfoCardDO;
-import org.wso2.solutions.identity.report.SummeryReportData;
+import org.wso2.solutions.identity.report.SummaryReportData;
public class InfoCardDAO extends BaseDAO {
@@ -71,7 +71,7 @@
Object[] tuple = (Object[])ite.next();
Integer count = (Integer)tuple[0];
String userId = (String)tuple[1];
- SummeryReportData data = new SummeryReportData();
+ SummaryReportData data = new SummaryReportData();
data.setCardCount(count.intValue());
data.setUserId(userId);
datas.add(data);
Modified:
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/IssuedTokenDAO.java
==============================================================================
---
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/IssuedTokenDAO.java
(original)
+++
trunk/solutions/identity/modules/identity-provider/src/main/java/org/wso2/solutions/identity/persistence/dao/IssuedTokenDAO.java
Tue Mar 18 00:16:50 2008
@@ -11,7 +11,7 @@
import org.wso2.solutions.identity.IdentityProviderException;
import org.wso2.solutions.identity.persistence.HibernateConfig;
import org.wso2.solutions.identity.persistence.dataobject.IssuedTokensDO;
-import org.wso2.solutions.identity.report.SummeryReportData;
+import org.wso2.solutions.identity.report.SummaryReportData;
public class IssuedTokenDAO
extends BaseDAO {
@@ -140,7 +140,7 @@
Object[] tuple = (Object[]) ite.next();
Integer count = (Integer) tuple[0];
String userId = (String) tuple[1];
- SummeryReportData data = new SummeryReportData();
+ SummaryReportData data = new SummaryReportData();
data.setTokenCount(count.intValue());
data.setUserId(userId);
datas.add(data);
@@ -171,7 +171,7 @@
Object[] tuple = (Object[]) ite.next();
Integer count = (Integer) tuple[0];
String cardId = (String) tuple[1];
- SummeryReportData data = new SummeryReportData();
+ SummaryReportData data = new SummaryReportData();
data.setTokenCount(count.intValue());
data.setCardId(cardId);
datas.add(data);
@@ -203,7 +203,7 @@
Integer count = (Integer) tuple[0];
String userId = (String) tuple[1];
String cardId = (String) tuple[2];
- SummeryReportData data = new SummeryReportData();
+ SummaryReportData data = new SummaryReportData();
data.setTokenCount(count.intValue());
data.setUserId(userId);
data.setCardId(cardId);
_______________________________________________
Identity-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/identity-dev