
org.apache.webbeans.portable.events.ProcessObserverMethodImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openwebbeans-impl Show documentation
Show all versions of openwebbeans-impl Show documentation
Apache OpenWebBeans Implementation core module
The 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.webbeans.portable.events;
import jakarta.enterprise.inject.spi.AnnotatedMethod;
import jakarta.enterprise.inject.spi.Extension;
import jakarta.enterprise.inject.spi.ObserverMethod;
import jakarta.enterprise.inject.spi.ProcessObserverMethod;
import jakarta.enterprise.inject.spi.configurator.ObserverMethodConfigurator;
import org.apache.webbeans.config.WebBeansContext;
import org.apache.webbeans.configurator.ObserverMethodConfiguratorImpl;
import org.apache.webbeans.portable.events.discovery.ExtensionAware;
/**
* Implementation of {@link ProcessObserverMethod}.
*
* @version $Rev$ $Date$
*
* @param declared bean class
* @param event type
*/
public class ProcessObserverMethodImpl extends EventBase implements ProcessObserverMethod, ExtensionAware,
AfterObserver
{
private final WebBeansContext webBeansContext;
/**Observer annotated method*/
private final AnnotatedMethod annotatedMethod;
/**ObserverMethod instance*/
private ObserverMethod observerMethod;
private boolean vetoed;
private boolean set;
private ObserverMethodConfiguratorImpl observerMethodConfigurator;
private Extension extension;
public ProcessObserverMethodImpl(WebBeansContext webBeansContext, AnnotatedMethod annotatedMethod,ObserverMethod observerMethod)
{
this.webBeansContext = webBeansContext;
this.annotatedMethod = annotatedMethod;
this.observerMethod = observerMethod;
}
@Override
public void setExtension(Extension extension)
{
this.extension = extension;
}
/**
* {@inheritDoc}
*/
@Override
public void addDefinitionError(Throwable t)
{
checkState();
WebBeansContext.getInstance().getBeanManagerImpl().getErrorStack().pushError(t);
}
@Override
public ObserverMethodConfigurator configureObserverMethod()
{
checkState();
if (set)
{
throw new IllegalStateException("You can't call setObserverMethod() and configureObserverMethod()");
}
if (observerMethodConfigurator == null)
{
this.observerMethodConfigurator = new ObserverMethodConfiguratorImpl(webBeansContext, extension, observerMethod);
}
return observerMethodConfigurator;
}
/**
* {@inheritDoc}
*/
@Override
public AnnotatedMethod getAnnotatedMethod()
{
checkState();
return annotatedMethod;
}
/**
* {@inheritDoc}
*/
@Override
public ObserverMethod getObserverMethod()
{
checkState();
if (observerMethodConfigurator != null)
{
return observerMethodConfigurator.getObserverMethod();
}
return observerMethod;
}
@Override
public void setObserverMethod(ObserverMethod observerMethod)
{
checkState();
if (observerMethodConfigurator != null)
{
throw new IllegalStateException("You can't call " +
"setObserverMethod() and configureObserverMethod()");
}
set = true;
this.observerMethod = observerMethod;
}
@Override
public void veto()
{
checkState();
vetoed = true;
}
public boolean isVetoed()
{
return vetoed;
}
@Override
public void afterObserver()
{
if (observerMethodConfigurator != null)
{
observerMethod = observerMethodConfigurator.getObserverMethod();
observerMethodConfigurator = null;
}
else if (set)
{
set = false;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy