source: SRUAggregator/trunk/src/main/java/eu/clarin/sru/fcs/aggregator/scan/Diagnostic.java @ 5893

Last change on this file since 5893 was 5893, checked in by emanuel.dima@uni-tuebingen.de, 9 years ago

switching to throttled client with statistics, work in progress; more UI improvements

File size: 902 bytes
Line 
1package eu.clarin.sru.fcs.aggregator.scan;
2
3/*
4 * @author edima
5 */
6public class Diagnostic {
7
8        private String uri;
9        private String context;
10        private String message;
11        private String diagnostic;
12
13        public Diagnostic(String uri, String context, String message, String diagnostic) {
14                this.uri = uri;
15                this.context = context;
16                this.message = message;
17                this.diagnostic = diagnostic;
18        }
19
20        public Diagnostic() {
21        }
22
23        public String getUri() {
24                return uri;
25        }
26
27        public String getContext() {
28                return context;
29        }
30        public String getMessage() {
31                return message;
32        }
33
34        public String getDiagnostic() {
35                return diagnostic;
36        }
37
38        public void setUri(String uri) {
39                this.uri = uri;
40        }
41
42        public void setMessage(String message) {
43                this.message = message;
44        }
45
46        public void setContext(String context) {
47                this.context = context;
48        }
49
50        public void setDiagnostic(String diagnostic) {
51                this.diagnostic = diagnostic;
52        }
53}
Note: See TracBrowser for help on using the repository browser.