Skip to main content
summaryrefslogtreecommitdiffstats
blob: a7be6f43770498eba291fd55363782120f853a7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*******************************************************************************
 * Copyright (c) 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.jst.ws.internal.consumption.ui.widgets.object;

import org.eclipse.jst.j2ee.webservice.wsdd.PortComponent;



public class HandlerTableItem {
  
  private String handlerClassName;
  private String handlerName;
  private String portName;
  private int index;
  
  private PortComponent port;
  private Object handler;
  private Object wsDescRef;

  /**
   * @return Returns the handlerClassName.
   */
  public String getHandlerClassName() {
    return handlerClassName;
  }
  /**
   * @param handlerClassName The handlerClassName to set.
   */
  public void setHandlerClassName(String handlerClassName) {
    this.handlerClassName = handlerClassName;
  }
  /**
   * @return Returns the handlerName.
   */
  public String getHandlerName() {
    return handlerName;
  }
  /**
   * @param handlerName The handlerName to set.
   */
  public void setHandlerName(String handlerName) {
    this.handlerName = handlerName;
  }
  /**
   * @return Returns the port.
   */
  public PortComponent getPort() {
    return port;
  }
  /**
   * @param port The port to set.
   */
  public void setPort(PortComponent port) {
    this.port = port;
  }
  /**
   * @return Returns the handler.
   */
  public Object getHandler() {
    return handler;
  }
  /**
   * @param handler The handler to set.
   */
  public void setHandler(Object handler) {
    this.handler = handler;
  }
  /**
   * @return Returns the portName.
   */
  public String getPortName() {
    return portName;
  }
  /**
   * @param portName The portName to set.
   */
  public void setPortName(String portName) {
    this.portName = portName;
  }

  /**
   * @return Returns the index.
   */
  public int getIndex() {
    return index;
  }
  /**
   * @param index The index to set.
   */
  public void setIndex(int index) {
    this.index = index;
  }
  /**
   * @return Returns the wsDescRef.
   */
  public Object getWsDescRef() {
    return wsDescRef;
  }
  /**
   * @param wsDescRef The wsDescRef to set.
   */
  public void setWsDescRef(Object wsDescRef) {
    this.wsDescRef = wsDescRef;
  }
}

Back to the top