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

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


    {
        _mapper = new ObjectMapper();
        _mapper.configure(SerializationConfig.Feature.INDENT_OUTPUT, true);

        Action[] supportedActions = {
                new ListAuthenticationProviderAttributes(),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_STORE_TYPES, "ListMessageStoreTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_TYPES, "ListVirtualHostTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_PREFERENCES_PROVIDERS_TYPES, "ListPreferencesProvidersTypes"),
                new ListBrokerAttribute(Broker.PRODUCT_VERSION, "version"),
                new ListGroupProviderAttributes(),
View Full Code Here


    {
        _mapper = new ObjectMapper();
        _mapper.configure(SerializationConfig.Feature.INDENT_OUTPUT, true);

        Action[] supportedActions = {
                new ListAuthenticationProviderAttributes(),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_STORE_TYPES, "ListMessageStoreTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_TYPES, "ListVirtualHostTypes"),
                new ListGroupProviderAttributes(),
                new ListAccessControlProviderAttributes(),
                new PluginClassProviderAction()
View Full Code Here

    public HelperServlet()
    {
        _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();
View Full Code Here

    {
        _mapper = new ObjectMapper();
        _mapper.configure(SerializationConfig.Feature.INDENT_OUTPUT, true);

        Action[] supportedActions = {
                new ListAuthenticationProviderAttributes(),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOSTNODE_TYPES, "ListVirtualHostNodeTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_TYPES, "ListVirtualHostTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_PREFERENCES_PROVIDER_TYPES, "ListPreferencesProvidersTypes"),
                new ListBrokerAttribute(Broker.PRODUCT_VERSION, "version"),
                new ListGroupProviderAttributes(),
View Full Code Here

    {
        _mapper = new ObjectMapper();
        _mapper.configure(SerializationConfig.Feature.INDENT_OUTPUT, true);

        Action[] supportedActions = {
                new ListAuthenticationProviderAttributes(),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_STORE_TYPES, "ListMessageStoreTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_VIRTUALHOST_TYPES, "ListVirtualHostTypes"),
                new ListBrokerAttribute(Broker.SUPPORTED_PREFERENCES_PROVIDER_TYPES, "ListPreferencesProvidersTypes"),
                new ListBrokerAttribute(Broker.PRODUCT_VERSION, "version"),
                new ListGroupProviderAttributes(),
View Full Code Here

TOP

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

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.