if (port instanceof WSComponentPort) {
this.componentPort = (WSComponentPort) port;
}
if (port instanceof SystemComponentDataPort) {
// XXX to handle the xwf created by version 2.6.2_XX or earlier.
SystemComponentDataPort systemPort = (SystemComponentDataPort) port;
this.componentPort = new WSComponentPort(systemPort.getName(), systemPort.getType(), null);
}
}
return this.componentPort;
}