Package org.apache.qpid.server.management.plugin.servlet.rest.action

Examples of org.apache.qpid.server.management.plugin.servlet.rest.action.ListMessageStoreTypes


        _mapper = new ObjectMapper();
        _mapper.configure(SerializationConfig.Feature.INDENT_OUTPUT, true);
        _actions = new HashMap<String, Action>();
        Action listProviderAttributes = new ListAuthenticationProviderAttributes();
        _actions.put(listProviderAttributes.getName(), listProviderAttributes);
        Action listMessageStoreTypes = new ListMessageStoreTypes();
        _actions.put(listMessageStoreTypes.getName(), listMessageStoreTypes);
        Action groupProviderAttributes = new ListGroupProviderAttributes();
        _actions.put(groupProviderAttributes.getName(), groupProviderAttributes);
        Action aclProviderAttributes = new ListAccessControlProviderAttributes();
        _actions.put(aclProviderAttributes.getName(), aclProviderAttributes);
    }
View Full Code Here

TOP

Related Classes of org.apache.qpid.server.management.plugin.servlet.rest.action.ListMessageStoreTypes

Copyright © 2018 www.massapicom. 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.