1 17 package org.apache.jmeter.monitor.model; 18 19 23 public class ConnectorImpl implements Connector 24 { 25 private ThreadInfo threadinfo = null; 26 private RequestInfo requestinfo = null; 27 private Workers workers = null; 28 private String name = null; 29 30 33 public ConnectorImpl() 34 { 35 super(); 36 } 37 38 public ThreadInfo getThreadInfo() 39 { 40 return this.threadinfo; 41 } 42 43 public void setThreadInfo(ThreadInfo value) 44 { 45 this.threadinfo = value; 46 } 47 48 public RequestInfo getRequestInfo() 49 { 50 return this.requestinfo; 51 } 52 53 public void setRequestInfo(RequestInfo value) 54 { 55 this.requestinfo = value; 56 } 57 58 public Workers getWorkers() 59 { 60 return this.workers; 61 } 62 63 public void setWorkers(Workers value) 64 { 65 this.workers = value; 66 } 67 68 public String getName() 69 { 70 return this.name; 71 } 72 73 public void setName(String value) 74 { 75 this.name = value; 76 } 77 78 } 79 | Popular Tags |