Package org.jboss.as.messaging

Source Code of org.jboss.as.messaging.GroupingHandlerTypeValidator

/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, 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.jboss.as.messaging;

import static org.jboss.as.messaging.MessagingMessages.MESSAGES;

import java.util.Arrays;
import java.util.List;

import org.hornetq.core.server.group.impl.GroupingHandlerConfiguration;
import org.jboss.as.controller.OperationFailedException;
import org.jboss.as.controller.operations.validation.ModelTypeValidator;
import org.jboss.dmr.ModelNode;
import org.jboss.dmr.ModelType;

/**
* Validates a given string parameter is a legal {@link org.hornetq.core.server.group.impl.GroupingHandlerConfiguration.TYPE}
*
* @author Brian Stansberry (c) 2011 Red Hat Inc.
*/
public class GroupingHandlerTypeValidator extends ModelTypeValidator {

    public static final GroupingHandlerTypeValidator INSTANCE = new GroupingHandlerTypeValidator();

    private GroupingHandlerTypeValidator() {
        super(ModelType.STRING, false);
    }

    @Override
    public void validateParameter(String parameterName, ModelNode value) throws OperationFailedException {
        super.validateParameter(parameterName, value);
        if (value.getType() != ModelType.EXPRESSION) {
            String str = value.asString();
            try {
                GroupingHandlerConfiguration.TYPE.valueOf(str);
            } catch (IllegalArgumentException e) {
                List<GroupingHandlerConfiguration.TYPE> list = Arrays.asList(GroupingHandlerConfiguration.TYPE.values());
                throw new OperationFailedException(new ModelNode().set(MESSAGES.invalidParameterValue(str, parameterName, list)));
            }
        }
    }
}
TOP

Related Classes of org.jboss.as.messaging.GroupingHandlerTypeValidator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.