2016-03-09 20:46:15 +00:00
|
|
|
function InspectionResult(decision, description, tcpEndPoint, secureTcpEndPoint) {
|
|
|
|
this.decision = decision;
|
|
|
|
this.description = description;
|
|
|
|
this.tcpEndPoint = tcpEndPoint || null;
|
|
|
|
this.secureTcpEndPoint = secureTcpEndPoint || null;
|
|
|
|
}
|
|
|
|
|
2018-07-09 17:27:12 +00:00
|
|
|
module.exports = InspectionResult;
|