org.jboss.as.clustering.controller.CommonUnaryRequirement 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.
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.clustering.controller;
import org.jboss.as.controller.services.path.PathManager;
import org.jboss.as.network.OutboundSocketBinding;
import org.jboss.as.network.SocketBinding;
import org.wildfly.clustering.service.UnaryRequirement;
import org.wildfly.service.descriptor.UnaryServiceDescriptor;
/**
* Enumerates common unary requirements for clustering resources
* @author Paul Ferraro
* @deprecated Superseded by {@link CommonServiceDescriptor}.
*/
@Deprecated(forRemoval = true)
public enum CommonUnaryRequirement implements UnaryRequirement, UnaryServiceNameFactoryProvider {
CREDENTIAL_STORE(CommonServiceDescriptor.CREDENTIAL_STORE),
DATA_SOURCE(CommonServiceDescriptor.DATA_SOURCE),
KEY_STORE(CommonServiceDescriptor.KEY_STORE),
OUTBOUND_SOCKET_BINDING(OutboundSocketBinding.SERVICE_DESCRIPTOR),
PATH(PathManager.PATH_SERVICE_DESCRIPTOR),
SOCKET_BINDING(SocketBinding.SERVICE_DESCRIPTOR),
SSL_CONTEXT(CommonServiceDescriptor.SSL_CONTEXT),
;
private final String name;
private final Class> type;
private final UnaryServiceNameFactory factory = new UnaryRequirementServiceNameFactory(this);
CommonUnaryRequirement(UnaryServiceDescriptor> descriptor) {
this(descriptor.getName(), descriptor.getType());
}
CommonUnaryRequirement(String name, Class> type) {
this.name = name;
this.type = type;
}
@Override
public String getName() {
return this.name;
}
@Override
public Class> getType() {
return this.type;
}
@Override
public UnaryServiceNameFactory getServiceNameFactory() {
return this.factory;
}
}