(IHttpService httpService, URL url, IHttpRequestResponse[] httpMessages, String name, String detail, String severity, String confidence)
| 3952 | private String confidence; |
| 3953 | |
| 3954 | public CustomScanIssue(IHttpService httpService, URL url, IHttpRequestResponse[] httpMessages, String name, String detail, String severity, String confidence) |
| 3955 | { |
| 3956 | this.httpService = httpService; |
| 3957 | this.url = url; |
| 3958 | this.httpMessages = httpMessages; |
| 3959 | this.name = name; |
| 3960 | this.detail = detail; |
| 3961 | this.severity = severity; |
| 3962 | this.confidence = confidence; |
| 3963 | } |
| 3964 | |
| 3965 | @Override |
| 3966 | public URL getUrl() |
nothing calls this directly
no outgoing calls
no test coverage detected