1 19 20 package org.apache.jmeter.module.cookies; 21 22 import org.apache.jmeter.testelement.TestElement; 23 import org.openide.nodes.Node; 24 25 29 public class JMeterCookie implements Node.Cookie { 30 private TestElement attachedElement; 31 32 public JMeterCookie(final TestElement element) { 33 attachedElement = element; 34 } 35 36 public TestElement getElement() { 37 return attachedElement; 38 } 39 } 40 | Popular Tags |