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

org.apache.openjpa.event.AbstractLifecycleListener Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.openjpa.event;

/**
 * Abstract implementation of the {@link LifecycleListener} interface
 * which delegates events to a single method.
 *
 * @author Steve Kim
 * @author Abe White
 */
public abstract class AbstractLifecycleListener
    implements LifecycleListener {

    /**
     * Should be implemented to handle the specific lifecycle event.
     */
    protected void eventOccurred(LifecycleEvent event) {
    }

    @Override
    public void beforePersist(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterPersist(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeClear(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterClear(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterLoad(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeDelete(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterDelete(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeStore(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterStore(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeDirty(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterDirty(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeDirtyFlushed(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterDirtyFlushed(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterRefresh(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeDetach(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterDetach(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void beforeAttach(LifecycleEvent event) {
        eventOccurred(event);
    }

    @Override
    public void afterAttach(LifecycleEvent event) {
        eventOccurred(event);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy