/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.wildfly.extension.messaging.activemq.jms.bridge; import static org.jboss.as.controller.SimpleAttributeDefinitionBuilder.create; import static org.jboss.as.controller.client.helpers.MeasurementUnit.MILLISECONDS; import static org.jboss.dmr.ModelType.BOOLEAN; import static org.jboss.dmr.ModelType.INT; import static org.jboss.dmr.ModelType.LONG; import static org.jboss.dmr.ModelType.STRING; import static org.wildfly.extension.messaging.activemq.CommonAttributes.CONNECTION_FACTORY; import static org.wildfly.extension.messaging.activemq.CommonAttributes.DESTINATION; import static org.wildfly.extension.messaging.activemq.CommonAttributes.PASSWORD; import static org.wildfly.extension.messaging.activemq.CommonAttributes.SOURCE; import static org.wildfly.extension.messaging.activemq.CommonAttributes.TARGET; import static org.wildfly.extension.messaging.activemq.MessagingExtension.MESSAGING_SECURITY_SENSITIVE_TARGET; import java.util.Arrays; import java.util.Collection; import org.apache.activemq.artemis.jms.bridge.QualityOfServiceMode; import org.jboss.as.controller.AttributeDefinition; import org.jboss.as.controller.AttributeMarshallers; import org.jboss.as.controller.AttributeParsers; import org.jboss.as.controller.ObjectTypeAttributeDefinition; import org.jboss.as.controller.PersistentResourceDefinition; import org.jboss.as.controller.PropertiesAttributeDefinition; import org.jboss.as.controller.ReloadRequiredWriteAttributeHandler; import org.jboss.as.controller.SimpleAttributeDefinition; import org.jboss.as.controller.SimpleOperationDefinition; import org.jboss.as.controller.access.management.SensitiveTargetAccessConstraintDefinition; import org.jboss.as.controller.descriptions.ModelDescriptionConstants; import org.jboss.as.controller.operations.validation.EnumValidator; import org.jboss.as.controller.operations.validation.IntRangeValidator; import org.jboss.as.controller.registry.AttributeAccess; import org.jboss.as.controller.registry.ManagementResourceRegistration; import org.jboss.as.controller.security.CredentialReference; import org.jboss.dmr.ModelNode; import org.wildfly.extension.messaging.activemq.CommonAttributes; import org.wildfly.extension.messaging.activemq.MessagingExtension; /** * @author Jeff Mesnil (c) 2012 Red Hat Inc. */ public class JMSBridgeDefinition extends PersistentResourceDefinition { public static final String PAUSE = "pause"; public static final String RESUME = "resume"; private static final String SOURCE_CREDENTIAL_REFERENCE_NAME = "source-" + CredentialReference.CREDENTIAL_REFERENCE; private static final String TARGET_CREDENTIAL_REFERENCE_NAME = "target-" + CredentialReference.CREDENTIAL_REFERENCE; public static final SimpleAttributeDefinition MODULE = create("module", STRING) .setRequired(false) .build(); public static final SimpleAttributeDefinition SOURCE_CONNECTION_FACTORY = create("source-connection-factory", STRING) .setAttributeGroup(SOURCE) .setXmlName(CONNECTION_FACTORY) .build(); public static final SimpleAttributeDefinition SOURCE_DESTINATION = create("source-destination", STRING) .setAttributeGroup(SOURCE) .setXmlName(DESTINATION) .build(); public static final SimpleAttributeDefinition SOURCE_USER = create("source-user", STRING) .setAttributeGroup(SOURCE) .setXmlName("user") .setRequired(false) .setAllowExpression(true) .addAccessConstraint(SensitiveTargetAccessConstraintDefinition.CREDENTIAL) .addAccessConstraint(MESSAGING_SECURITY_SENSITIVE_TARGET) .build(); public static final SimpleAttributeDefinition SOURCE_PASSWORD = create("source-password", STRING, true) .setAttributeGroup(SOURCE) .setXmlName(PASSWORD) .setAllowExpression(true) .addAccessConstraint(SensitiveTargetAccessConstraintDefinition.CREDENTIAL) .addAccessConstraint(MESSAGING_SECURITY_SENSITIVE_TARGET) .setAlternatives(SOURCE_CREDENTIAL_REFERENCE_NAME) .build(); public static final ObjectTypeAttributeDefinition SOURCE_CREDENTIAL_REFERENCE = CredentialReference.getAttributeBuilder(SOURCE_CREDENTIAL_REFERENCE_NAME, SOURCE_CREDENTIAL_REFERENCE_NAME, true) .setAttributeGroup(SOURCE) .addAccessConstraint(SensitiveTargetAccessConstraintDefinition.CREDENTIAL) .addAccessConstraint(MESSAGING_SECURITY_SENSITIVE_TARGET) .setAlternatives(SOURCE_PASSWORD.getName()) .build(); public static final PropertiesAttributeDefinition SOURCE_CONTEXT = new PropertiesAttributeDefinition.Builder("source-context", true) .setAttributeGroup(SOURCE) .setAttributeParser(new AttributeParsers.PropertiesParser()) .setAttributeMarshaller(new AttributeMarshallers.PropertiesAttributeMarshaller()) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition TARGET_CONNECTION_FACTORY = create("target-connection-factory", STRING) .setAttributeGroup(TARGET) .setXmlName(CONNECTION_FACTORY) .build(); public static final SimpleAttributeDefinition TARGET_DESTINATION = create("target-destination", STRING) .setAttributeGroup(TARGET) .setXmlName(DESTINATION) .build(); public static final SimpleAttributeDefinition TARGET_USER = create("target-user", STRING) .setAttributeGroup(TARGET) .setXmlName("user") .setRequired(false) .setAllowExpression(true) .addAccessConstraint(SensitiveTargetAccessConstraintDefinition.CREDENTIAL) .addAccessConstraint(MESSAGING_SECURITY_SENSITIVE_TARGET) .build(); public static final SimpleAttributeDefinition TARGET_PASSWORD = create("target-password", STRING, true) .setAttributeGroup(TARGET) .setXmlName(PASSWORD) .setAllowExpression(true) .addAccessConstraint(SensitiveTargetAccessConstraintDefinition.CREDENTIAL) .addAccessConstraint(MESSAGING_SECURITY_SENSITIVE_TARGET) .setAlternatives(TARGET_CREDENTIAL_REFERENCE_NAME) .build(); public static final ObjectTypeAttributeDefinition TARGET_CREDENTIAL_REFERENCE = CredentialReference.getAttributeBuilder(TARGET_CREDENTIAL_REFERENCE_NAME, TARGET_CREDENTIAL_REFERENCE_NAME, true) .setAttributeGroup(TARGET) .addAccessConstraint(SensitiveTargetAccessConstraintDefinition.CREDENTIAL) .addAccessConstraint(MESSAGING_SECURITY_SENSITIVE_TARGET) .setAlternatives(TARGET_PASSWORD.getName()) .build(); public static final PropertiesAttributeDefinition TARGET_CONTEXT = new PropertiesAttributeDefinition.Builder("target-context", true) .setAttributeGroup(TARGET) .setAttributeParser(new AttributeParsers.PropertiesParser()) .setAttributeMarshaller(new AttributeMarshallers.PropertiesAttributeMarshaller()) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition QUALITY_OF_SERVICE = create("quality-of-service", STRING) .setValidator(new EnumValidator<>(QualityOfServiceMode.class, false, false)) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition FAILURE_RETRY_INTERVAL = create("failure-retry-interval", LONG) .setMeasurementUnit(MILLISECONDS) .setValidator(InfiniteOrPositiveValidators.LONG_INSTANCE) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition MAX_RETRIES = create("max-retries", INT) .setValidator(InfiniteOrPositiveValidators.INT_INSTANCE) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition MAX_BATCH_SIZE = create("max-batch-size", INT) .setValidator(new IntRangeValidator(0, Integer.MAX_VALUE, false, false)) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition MAX_BATCH_TIME = create("max-batch-time", LONG) .setMeasurementUnit(MILLISECONDS) .setValidator(InfiniteOrPositiveValidators.LONG_INSTANCE) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition SUBSCRIPTION_NAME = create("subscription-name", STRING) .setRequired(false) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition CLIENT_ID = create("client-id", STRING) .setRequired(false) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition ADD_MESSAGE_ID_IN_HEADER = create("add-messageID-in-header", BOOLEAN) .setRequired(false) .setDefaultValue(new ModelNode().set(false)) .setAllowExpression(true) .build(); public static final SimpleAttributeDefinition STARTED = create(CommonAttributes.STARTED, BOOLEAN) .setFlags(AttributeAccess.Flag.STORAGE_RUNTIME) .build(); public static final AttributeDefinition[] ATTRIBUTES = { MODULE, QUALITY_OF_SERVICE, FAILURE_RETRY_INTERVAL, MAX_RETRIES, MAX_BATCH_SIZE, MAX_BATCH_TIME, CommonAttributes.SELECTOR, SUBSCRIPTION_NAME, CommonAttributes.CLIENT_ID, ADD_MESSAGE_ID_IN_HEADER, SOURCE_CONNECTION_FACTORY, SOURCE_DESTINATION, SOURCE_USER, SOURCE_PASSWORD, SOURCE_CREDENTIAL_REFERENCE, SOURCE_CONTEXT, TARGET_CONNECTION_FACTORY, TARGET_DESTINATION, TARGET_USER, TARGET_PASSWORD, TARGET_CREDENTIAL_REFERENCE, TARGET_CONTEXT }; public static final AttributeDefinition[] READONLY_ATTRIBUTES = { STARTED, CommonAttributes.PAUSED }; public static final String[] OPERATIONS = { ModelDescriptionConstants.START, ModelDescriptionConstants.STOP, PAUSE, RESUME }; public static final JMSBridgeDefinition INSTANCE = new JMSBridgeDefinition(); private JMSBridgeDefinition() { super(MessagingExtension.JMS_BRIDGE_PATH, MessagingExtension.getResourceDescriptionResolver(CommonAttributes.JMS_BRIDGE), JMSBridgeAdd.INSTANCE, JMSBridgeRemove.INSTANCE); } @Override public Collection<AttributeDefinition> getAttributes() { return Arrays.asList(ATTRIBUTES); } @Override public void registerAttributes(ManagementResourceRegistration registry) { ReloadRequiredWriteAttributeHandler reloadRequiredWriteAttributeHandler = new ReloadRequiredWriteAttributeHandler(ATTRIBUTES); for (AttributeDefinition attr : ATTRIBUTES) { registry.registerReadWriteAttribute(attr, null, reloadRequiredWriteAttributeHandler); } for (AttributeDefinition attr : READONLY_ATTRIBUTES) { registry.registerReadOnlyAttribute(attr, JMSBridgeHandler.INSTANCE); } } @Override public void registerOperations(ManagementResourceRegistration registry) { super.registerOperations(registry); for (final String operationName : OPERATIONS) { registry.registerOperationHandler(new SimpleOperationDefinition(operationName, getResourceDescriptionResolver()), JMSBridgeHandler.INSTANCE); } } }