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 longdurationMsthe duration the statement took to execute in Millisecondsprotected java.lang.Stringstatementthe statement (sql string)protected java.lang.StringstatementParametersprotected StatementLogSqlSession.SqlStatementTypestatementType
-
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 longgetDurationMs()java.lang.StringgetStatement()java.lang.StringgetStatementParameters()StatementLogSqlSession.SqlStatementTypegetStatementType()
-
-
-
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()
-
-