All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tangosol.coherence.management.internal.ManagementResourceConfig Maven / Gradle / Ivy

/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.coherence.management.internal;

import com.tangosol.coherence.management.RestManagement;
import org.glassfish.jersey.server.ResourceConfig;

/**
 * The default {@link ResourceConfig} implementation that supports
 * management requests.
 *
 * @author hr  2016.07.26
 * @since 12.2.1.4.0
 */
public class ManagementResourceConfig
        extends ResourceConfig
    {
    // ----- constructors ---------------------------------------------------

    /**
     * Construct an instance of ResourceConfig that initialize
     * Coherence predefined properties and searches for root resource classes
     * and providers in the specified packages.
     */
    public ManagementResourceConfig()
        {
        RestManagement.configure(this);
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy