01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.jmeter.monitor.model;
18:
19: /**
20: *
21: * @version $Revision: 493787 $ $Date: 2007-01-07 18:02:23 +0000 (Sun, 07 Jan 2007) $
22: */
23: public class ConnectorImpl implements Connector {
24: private ThreadInfo threadinfo = null;
25:
26: private RequestInfo requestinfo = null;
27:
28: private Workers workers = null;
29:
30: private String name = null;
31:
32: /**
33: *
34: */
35: public ConnectorImpl() {
36: super ();
37: }
38:
39: public ThreadInfo getThreadInfo() {
40: return this .threadinfo;
41: }
42:
43: public void setThreadInfo(ThreadInfo value) {
44: this .threadinfo = value;
45: }
46:
47: public RequestInfo getRequestInfo() {
48: return this .requestinfo;
49: }
50:
51: public void setRequestInfo(RequestInfo value) {
52: this .requestinfo = value;
53: }
54:
55: public Workers getWorkers() {
56: return this .workers;
57: }
58:
59: public void setWorkers(Workers value) {
60: this .workers = value;
61: }
62:
63: public String getName() {
64: return this .name;
65: }
66:
67: public void setName(String value) {
68: this.name = value;
69: }
70:
71: }
|