public String getInputChannelName() { if (isTap()) { return String.format( "%s.%s.%s", BusUtils.constructTapPrefix(tap.getGroup()), tap.getName(), tap.getIndex()); } return (inputChannelName != null) ? inputChannelName : BusUtils.constructPipeName(group, index > 0 ? index - 1 : index); }
public String getOutputChannelName() { return (outputChannelName != null) ? outputChannelName : BusUtils.constructPipeName(group, index); }