org.jboss.as.clustering.controller.ExtensionRegistrationContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-common Show documentation
Show all versions of wildfly-clustering-common Show documentation
The code in this module is not explicitly related to clustering, but rather contains resuable code used by clustering modules
and any modules that integrate with clustering.
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.clustering.controller;
import java.util.Optional;
import org.jboss.as.controller.ExtensionContext;
import org.jboss.as.controller.services.path.PathManager;
/**
* @author Paul Ferraro
*/
public class ExtensionRegistrationContext implements ManagementRegistrationContext {
private final boolean runtimeOnlyRegistrationValid;
private final Optional pathManager;
public ExtensionRegistrationContext(ExtensionContext context) {
this.runtimeOnlyRegistrationValid = context.isRuntimeOnlyRegistrationValid();
this.pathManager = context.getProcessType().isServer() ? Optional.of(context.getPathManager()) : Optional.empty();
}
@Override
public boolean isRuntimeOnlyRegistrationValid() {
return this.runtimeOnlyRegistrationValid;
}
@Override
public Optional getPathManager() {
return this.pathManager;
}
}