gluu
公開メンバ関数 | 変数 | 静的非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.model.AuthenticationChartDto クラス
org.gluu.oxtrust.model.AuthenticationChartDto の継承関係図
Inheritance graph
org.gluu.oxtrust.model.AuthenticationChartDto 連携図
Collaboration graph

公開メンバ関数

 AuthenticationChartDto ()
 
String [] getLabels ()
 
void setLabels (String[] labels)
 
Long [] getSuccess ()
 
void setSuccess (Long[] success)
 
Long [] getFailure ()
 
void setFailure (Long[] failure)
 
Long getTotalRequest ()
 
void setTotalRequest (Long totalRequest)
 
Long getTotalSuccess ()
 
void setTotalSuccess (Long totalSuccess)
 
Long getTotalFailure ()
 
void setTotalFailure (Long totalFailure)
 

変数

String [] labels
 
Long [] success
 
Long [] failure
 
Long totalRequest
 
Long totalSuccess
 
Long totalFailure
 

静的非公開変数類

static final long serialVersionUID = -6376070511032852935L
 

詳解

構築子と解体子

◆ AuthenticationChartDto()

org.gluu.oxtrust.model.AuthenticationChartDto.AuthenticationChartDto ( )
inline
16  {
17  totalRequest = 0L;
18  totalSuccess = 0L;
19  totalFailure = 0L;
20 
21  }
Long totalSuccess
Definition: AuthenticationChartDto.java:13
Long totalRequest
Definition: AuthenticationChartDto.java:12
Long totalFailure
Definition: AuthenticationChartDto.java:14

関数詳解

◆ getFailure()

Long [] org.gluu.oxtrust.model.AuthenticationChartDto.getFailure ( )
inline
46  {
47 
48  return failure;
49  }
Long [] failure
Definition: AuthenticationChartDto.java:11

◆ getLabels()

String [] org.gluu.oxtrust.model.AuthenticationChartDto.getLabels ( )
inline
23  {
24  return labels;
25  }
String [] labels
Definition: AuthenticationChartDto.java:9

◆ getSuccess()

Long [] org.gluu.oxtrust.model.AuthenticationChartDto.getSuccess ( )
inline
31  {
32  return success;
33  }
Long [] success
Definition: AuthenticationChartDto.java:10

◆ getTotalFailure()

Long org.gluu.oxtrust.model.AuthenticationChartDto.getTotalFailure ( )
inline
79  {
80  return totalFailure;
81  }
Long totalFailure
Definition: AuthenticationChartDto.java:14

◆ getTotalRequest()

Long org.gluu.oxtrust.model.AuthenticationChartDto.getTotalRequest ( )
inline
63  {
64  return totalRequest;
65  }
Long totalRequest
Definition: AuthenticationChartDto.java:12

◆ getTotalSuccess()

Long org.gluu.oxtrust.model.AuthenticationChartDto.getTotalSuccess ( )
inline
71  {
72  return totalSuccess;
73  }
Long totalSuccess
Definition: AuthenticationChartDto.java:13

◆ setFailure()

void org.gluu.oxtrust.model.AuthenticationChartDto.setFailure ( Long []  failure)
inline
51  {
52  if (failure != null) {
53  for (Long number : failure) {
54  totalRequest = totalRequest + number;
55  totalFailure = totalFailure + number;
56  }
57 
58  }
59 
60  this.failure = failure;
61  }
Long totalRequest
Definition: AuthenticationChartDto.java:12
Long [] failure
Definition: AuthenticationChartDto.java:11
Long totalFailure
Definition: AuthenticationChartDto.java:14

◆ setLabels()

void org.gluu.oxtrust.model.AuthenticationChartDto.setLabels ( String []  labels)
inline
27  {
28  this.labels = labels;
29  }
String [] labels
Definition: AuthenticationChartDto.java:9

◆ setSuccess()

void org.gluu.oxtrust.model.AuthenticationChartDto.setSuccess ( Long []  success)
inline
35  {
36  if (success != null) {
37  for (Long number : success) {
38  totalRequest = totalRequest + number;
39  totalSuccess = totalSuccess + number;
40  }
41 
42  }
43  this.success = success;
44  }
Long totalSuccess
Definition: AuthenticationChartDto.java:13
Long [] success
Definition: AuthenticationChartDto.java:10
Long totalRequest
Definition: AuthenticationChartDto.java:12

◆ setTotalFailure()

void org.gluu.oxtrust.model.AuthenticationChartDto.setTotalFailure ( Long  totalFailure)
inline
83  {
85  }
Long totalFailure
Definition: AuthenticationChartDto.java:14

◆ setTotalRequest()

void org.gluu.oxtrust.model.AuthenticationChartDto.setTotalRequest ( Long  totalRequest)
inline
67  {
69  }
Long totalRequest
Definition: AuthenticationChartDto.java:12

◆ setTotalSuccess()

void org.gluu.oxtrust.model.AuthenticationChartDto.setTotalSuccess ( Long  totalSuccess)
inline
75  {
77  }
Long totalSuccess
Definition: AuthenticationChartDto.java:13

メンバ詳解

◆ failure

Long [] org.gluu.oxtrust.model.AuthenticationChartDto.failure
package

◆ labels

String [] org.gluu.oxtrust.model.AuthenticationChartDto.labels
package

◆ serialVersionUID

final long org.gluu.oxtrust.model.AuthenticationChartDto.serialVersionUID = -6376070511032852935L
staticprivate

◆ success

Long [] org.gluu.oxtrust.model.AuthenticationChartDto.success
package

◆ totalFailure

Long org.gluu.oxtrust.model.AuthenticationChartDto.totalFailure
package

◆ totalRequest

Long org.gluu.oxtrust.model.AuthenticationChartDto.totalRequest
package

◆ totalSuccess

Long org.gluu.oxtrust.model.AuthenticationChartDto.totalSuccess
package

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