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