super(other);
handlerName = other.handlerName; // String
handlerClass = other.handlerClass; // String
portNames.addAll(other.portNames); // Set of String
soapRoles.addAll(other.soapRoles); // Set of String
soapHeaders.addAll(other.soapHeaders); // Set of QName (immutable)
for (Iterator i = other.initParams.iterator(); i.hasNext();) {
initParams.add(new NameValuePairDescriptor((NameValuePairDescriptor)i.next()));
}
toStringBuffer.append("\nHandler name = ").append(handlerName).append(
"Handler class name = ").append(handlerClass);
for (Iterator i=getInitParams().iterator(); i.hasNext(); ) {
toStringBuffer.append("\n").append(i.next().toString());
}