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

com.sun.enterprise.security.WebSecurityDeployerProbeProvider Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.enterprise.security;

import org.glassfish.external.probe.provider.annotations.Probe;
import org.glassfish.external.probe.provider.annotations.ProbeParam;
import org.glassfish.external.probe.provider.annotations.ProbeProvider;

@ProbeProvider(moduleProviderName = "glassfish", moduleName = "security", probeProviderName = "web")
public class WebSecurityDeployerProbeProvider {

    /*@Probe(name = "webDeploymentStartedEvent")
    public void webDeploymentStartedEvent(
            @ProbeParam("appName") String appName) {
    }

    @Probe(name = "webDeploymentEndedEvent")
    public void webDeploymentEndedEvent(
            @ProbeParam("appName") String appName) {
    }*/

    @Probe(name = "policyCreationStartedEvent")
    public void policyCreationStartedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "policyCreationEndedEvent")
    public void policyCreationEndedEvent(@ProbeParam("appName") String appName) {
    }

    /*    @Probe(name = "webUndeploymentStartedEvent")
    public void webUndeploymentStartedEvent(
            @ProbeParam("appName") String appName) {
    }

    @Probe(name = "webUndeploymentEndedEvent")
    public void webUndeploymentEndedEvent(
            @ProbeParam("appName") String appName) {
    }*/

    @Probe(name = "policyDestructionStartedEvent")
    public void policyDestructionStartedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "policyDestructionEndedEvent")
    public void policyDestructionEndedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "securityManagerCreationEvent")
    public void securityManagerCreationEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "securityManagerCreationStartedEvent")
    public void securityManagerCreationStartedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "securityManagerCreationEndedEvent")
    public void securityManagerCreationEndedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "securityManagerDestructionEvent")
    public void securityManagerDestructionEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "securityManagerDestructionStartedEvent")
    public void securityManagerDestructionStartedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "securityManagerDestructionEndedEvent")
    public void securityManagerDestructionEndedEvent(@ProbeParam("appName") String appName) {
    }

    @Probe(name = "policyCreationEvent")
    public void policyCreationEvent(@ProbeParam("contextId") String appName) {
    }

    @Probe(name = "policyDestructionEvent")
    public void policyDestructionEvent(@ProbeParam("contextId") String appName) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy