/* */ {
/* 469 */ String tns = wsdlOperation.getName().getNamespaceURI();
/* 470 */ String portTypeName = wsdlOperation.getName().getLocalPart();
/* */
/* 472 */ AddressingProperties ADDR = new AddressingPropertiesImpl();
/* 473 */ AddressingOpMetaExt addrExt = new AddressingOpMetaExt(ADDR.getNamespaceURI());
/* */
/* 476 */ WSDLProperty wsaInAction = wsdlOperation.getProperty("http://www.jboss.org/jbossws/wsa/actionIn");
/* 477 */ if (wsaInAction != null)
/* */ {
/* 479 */ addrExt.setInboundAction(wsaInAction.getValue());
/* */ }
/* */ else
/* */ {
/* 483 */ WSDLProperty messageName = wsdlOperation.getProperty("http://www.jboss.org/jbossws/messagename/in");
/* 484 */ addrExt.setInboundAction(tns + "/" + portTypeName + "/" + messageName);
/* */ }
/* */
/* 488 */ WSDLProperty wsaOutAction = wsdlOperation.getProperty("http://www.jboss.org/jbossws/wsa/actionOut");
/* 489 */ if (wsaOutAction != null)
/* */ {
/* 491 */ addrExt.setOutboundAction(wsaOutAction.getValue());
/* */ }
/* */ else
/* */ {
/* 495 */ WSDLProperty messageName = wsdlOperation.getProperty("http://www.jboss.org/jbossws/messagename/out");
/* 496 */ addrExt.setOutboundAction(tns + "/" + portTypeName + "/" + messageName);
/* */ }
/* */
/* 499 */ opMetaData.addExtension(addrExt);
/* */ }