@Override
public void handleRollback(OperationContext context, ModelNode operation) {
if (resourceAdapter != null) {
List<ServiceController<?>> newControllers = new LinkedList<ServiceController<?>>();
if (model.get(ARCHIVE.getName()).isDefined()) {
RaOperationUtil.installRaServices(context, new ServiceVerificationHandler(), name, resourceAdapter, newControllers);
} else {
try {
RaOperationUtil.installRaServicesAndDeployFromModule(context, new ServiceVerificationHandler(), name, resourceAdapter, archiveOrModuleName, newControllers);
} catch (OperationFailedException e) {
}
}
try {