📄 reportutil.java
字号:
/* * Copyright 2005,2006 WSO2, Inc. http://www.wso2.org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.wso2.solutions.identity.report;import java.util.ArrayList;import java.util.Date;import java.util.Iterator;import java.util.List;import org.wso2.solutions.identity.persistence.dataobject.InfoCardDO;import org.wso2.solutions.identity.persistence.dataobject.IssuedTokensDO;import org.wso2.solutions.identity.persistence.dataobject.ReportDataDO;public class ReportUtil { public static List convertToUsageReportData(List in) { List lst = new ArrayList(); Iterator ite = in.iterator(); while (ite.hasNext()) { ReportDataDO udo = (ReportDataDO) ite.next(); SimpleReportData data = new SimpleReportData(); data.setActionId(udo.getAction().getActionId()); Date date = udo.getLastUpdatedTime(); data.setTimestamp(date.toString()); data.setDescription(udo.getDescription()); lst.add(data); } return lst; } public static List convertToFailureReportData(List in) { List lst = new ArrayList(); Iterator ite = in.iterator(); while (ite.hasNext()) { ReportDataDO udo = (ReportDataDO) ite.next(); SimpleReportData data = new SimpleReportData(); data.setUserId(udo.getUserId()); Date date = udo.getLastUpdatedTime(); data.setTimestamp(date.toString()); data.setDescription(udo.getDescription()); lst.add(data); } return lst; } public static List convertToICReportData(InfoCardDO[] cards) { List lst = new ArrayList(); for (int i = 0; i < cards.length; i++) { InfoCardDO card = cards[i]; ICReportData data = new ICReportData(); data.setCardId(card.getCardId()); String period = card.getDateIssued().toString() + " - " + card.getDateExpires().toString(); data.setValidPeriod(period); data.setOpenIDInfoCard(card.isOpenIDInfoCard()); lst.add(data); } return lst; } public static List convertToTokDetailsForUser(IssuedTokensDO[] toks) { List lst = new ArrayList(); for (int i = 0; i < toks.length; i++) { TokenReportData data = new TokenReportData(); IssuedTokensDO tok = toks[i]; String validPeriod = tok.getDateIssued().toString() + " - " + tok.getDateExpires().toString(); data.setCardId(tok.getCard().getCardId()); data.setValidPeriod(validPeriod); data.setTokenType(tok.getTokenType()); lst.add(data); } return lst; } public static List convertToTokDetailsForCardId(IssuedTokensDO[] toks) { List lst = new ArrayList(); for (int i = 0; i < toks.length; i++) { TokenReportData data = new TokenReportData(); IssuedTokensDO tok = toks[i]; String validPeriod = tok.getDateIssued().toString() + " - " + tok.getDateExpires().toString(); data.setUserId(tok.getCard().getUserId()); data.setValidPeriod(validPeriod); data.setTokenType(tok.getTokenType()); lst.add(data); } return lst; } public static List convertToTokDetailsForCardAndUser(IssuedTokensDO[] toks) { List lst = new ArrayList(); for (int i = 0; i < toks.length; i++) { TokenReportData data = new TokenReportData(); IssuedTokensDO tok = toks[i]; String validPeriod = tok.getDateIssued().toString() + " - " + tok.getDateExpires().toString(); data.setValidPeriod(validPeriod); data.setTokenType(tok.getTokenType()); lst.add(data); } return lst; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -