private static Class<? extends Interceptor>[] parseSequence(Class<? extends InterceptorSequence> type) {
try {
InterceptorSequence sequence = type.getConstructor().newInstance();
return sequence.getSequence();
} catch (Exception e) {
throw new VRaptorException("Problem ocurred while instantiating an interceptor sequence", e);
}
}