if (seiFeatureList != null) {
for (int i = 0; i < seiFeatureList.size(); i++) {
Annotation checkAnnotation = seiFeatureList.get(i);
if (checkAnnotation instanceof AddressingAnnot) {
AddressingAnnot addressingAnnot = (AddressingAnnot) checkAnnotation;
responses = addressingAnnot.responses();
}
}
}
return responses;
}