}
protected void performRuntime(final OperationContext context, ModelNode operation, ModelNode model, ServiceVerificationHandler verificationHandler,
List<ServiceController<?>> newControllers, final ScheduledExecutorService executorService,
final FileSystemDeploymentService bootTimeScanner) throws OperationFailedException {
final PathAddress address = PathAddress.pathAddress(operation.get(OP_ADDR));
final String name = address.getLastElement().getValue();
final String path = DeploymentScannerDefinition.PATH.resolveModelAttribute(context, operation).asString();
final Boolean enabled = SCAN_ENABLED.resolveModelAttribute(context, operation).asBoolean();
final Integer interval = SCAN_INTERVAL.resolveModelAttribute(context, operation).asInt();
final String relativeTo = operation.hasDefined(CommonAttributes.RELATIVE_TO) ? RELATIVE_TO.resolveModelAttribute(context, operation).asString() : null;
final Boolean autoDeployZip = AUTO_DEPLOY_ZIPPED.resolveModelAttribute(context, operation).asBoolean();