* - check for source type : ROP or SPHL
* - and route to handle Biz Bean
* @param message
*/
public void processRtcSourceRouter(String message){
RTCAssignmentType _input;
try {
JAXBElement<RTCAssignmentType> data = _um.unmarshal(new StreamSource(new StringReader(message)), RTCAssignmentType.class);
_input = (RTCAssignmentType) data.getValue();
String source = _input.getMeta().getSource();
if(isNullOrEmptyStr(source)){
LOG.warn("Input message type is missing. Message dropped.");
return;
}
switch(source){