Class StatementLogSqlSession.SqlStatementLog
- java.lang.Object
-
- org.camunda.bpm.qa.performance.engine.sqlstatementlog.StatementLogSqlSession.SqlStatementLog
-
- Enclosing class:
- StatementLogSqlSession
public static class StatementLogSqlSession.SqlStatementLog extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected long
durationMs
the duration the statement took to execute in Millisecondsprotected String
statement
the statement (sql string)protected String
statementParameters
protected StatementLogSqlSession.SqlStatementType
statementType
-
Constructor Summary
Constructors Constructor Description SqlStatementLog(StatementLogSqlSession.SqlStatementType type, Object parameters, String statement, long duration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getDurationMs()
String
getStatement()
String
getStatementParameters()
StatementLogSqlSession.SqlStatementType
getStatementType()
-
-
-
Field Detail
-
statementType
protected StatementLogSqlSession.SqlStatementType statementType
-
statement
protected String statement
the statement (sql string)
-
durationMs
protected long durationMs
the duration the statement took to execute in Milliseconds
-
statementParameters
protected String statementParameters
-
-
Constructor Detail
-
SqlStatementLog
public SqlStatementLog(StatementLogSqlSession.SqlStatementType type, Object parameters, String statement, long duration)
-
-
Method Detail
-
getStatement
public String getStatement()
-
getStatementType
public StatementLogSqlSession.SqlStatementType getStatementType()
-
getDurationMs
public long getDurationMs()
-
getStatementParameters
public String getStatementParameters()
-
-