MCPcopy Create free account
hub / github.com/0opslab/opslabJutil / BusinessLog

Class BusinessLog

src/test/java/com/opslab/temp/model/BusinessLog.java:4–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3
4public class BusinessLog extends Log implements interfaces {
5
6 private String operationName;
7
8 private String operation_type;
9
10 public String operationUser;
11
12 protected String result;
13
14 public String getOperationName() {
15 return operationName;
16 }
17
18 public void setOperationName(String operationName) {
19 this.operationName = operationName;
20 }
21
22 public String getOperation_type() {
23 return operation_type;
24 }
25
26 public void setOperation_type(String operation_type) {
27 this.operation_type = operation_type;
28 }
29
30 @Override
31 public String toString() {
32 return "BusinessLog{" +
33 "log=" + super.toString() +
34 "operationName='" + operationName + '\'' +
35 ", operation_type='" + operation_type + '\'' +
36 '}';
37 }
38}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected