| 2 | |
| 3 | |
| 4 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected