* Method to get the EnumFPDU type from a String
* @param sType The wanted type as a String
* @return The corresponding EnumPFDU
*/
public EnumFPDU getRightType(String sType) {
EnumFPDU rightType = null;
sType = sType.toUpperCase();
if (sType.equals("CONNECT")) {
rightType = EnumFPDU.CONNECT;
} else if (sType.equals("ACONNECT")) {
rightType = EnumFPDU.ACONNECT;