mitreid-connect
公開メンバ関数 | 限定公開メンバ関数 | 非公開変数類 | 静的非公開変数類 | 全メンバ一覧
org.mitre.openid.connect.service.impl.MITREidDataServiceSupport クラスabstract
org.mitre.openid.connect.service.impl.MITREidDataServiceSupport の継承関係図
Inheritance graph
org.mitre.openid.connect.service.impl.MITREidDataServiceSupport 連携図
Collaboration graph

公開メンバ関数

 MITREidDataServiceSupport ()
 

限定公開メンバ関数

Date utcToDate (String value)
 
String toUTCString (Date value)
 

非公開変数類

final DateFormatter dateFormatter
 

静的非公開変数類

static final Logger logger = LoggerFactory.getLogger(MITREidDataServiceSupport.class)
 

詳解

構築子と解体子

◆ MITREidDataServiceSupport()

org.mitre.openid.connect.service.impl.MITREidDataServiceSupport.MITREidDataServiceSupport ( )
inline
34  {
35  dateFormatter = new DateFormatter();
36  dateFormatter.setIso(ISO.DATE_TIME);
37  }
final DateFormatter dateFormatter
Definition: MITREidDataServiceSupport.java:28

関数詳解

◆ toUTCString()

String org.mitre.openid.connect.service.impl.MITREidDataServiceSupport.toUTCString ( Date  value)
inlineprotected
51  {
52  if (value == null) {
53  return null;
54  }
55  return dateFormatter.print(value, Locale.ENGLISH);
56  }
final DateFormatter dateFormatter
Definition: MITREidDataServiceSupport.java:28

◆ utcToDate()

Date org.mitre.openid.connect.service.impl.MITREidDataServiceSupport.utcToDate ( String  value)
inlineprotected
39  {
40  if (value == null) {
41  return null;
42  }
43  try {
44  return dateFormatter.parse(value, Locale.ENGLISH);
45  } catch (ParseException ex) {
46  logger.error("Unable to parse datetime {}", value, ex);
47  }
48  return null;
49  }
static final Logger logger
Definition: MITREidDataServiceSupport.java:32
final DateFormatter dateFormatter
Definition: MITREidDataServiceSupport.java:28

メンバ詳解

◆ dateFormatter

final DateFormatter org.mitre.openid.connect.service.impl.MITREidDataServiceSupport.dateFormatter
private

◆ logger

final Logger org.mitre.openid.connect.service.impl.MITREidDataServiceSupport.logger = LoggerFactory.getLogger(MITREidDataServiceSupport.class)
staticprivate

Logger for this class


このクラス詳解は次のファイルから抽出されました: