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

io.atlassian.util.adapter.jakarta.el.JakartaELContextEventAdapter Maven / Gradle / Ivy

Go to download

A collection of classes for adapting Servlet API 4.0 objects to Servlet API 5.0 and vice versa.

There is a newer version: 0.1.0
Show newest version
package io.atlassian.util.adapter.jakarta.el;

import io.atlassian.util.adapter.javax.el.JavaXELContextEventAdapter;
import jakarta.el.ELContextEvent;

import static io.atlassian.util.adapter.jakarta.JakartaJspAdapters.asJakartaJsp;
import static io.atlassian.util.adapter.util.WrapperUtil.applyIfNonNull;

public class JakartaELContextEventAdapter extends ELContextEvent {

    private final javax.el.ELContextEvent delegate;

    public static ELContextEvent from(javax.el.ELContextEvent delegate) {
        if (delegate instanceof JavaXELContextEventAdapter castDelegate) {
            return castDelegate.getDelegate();
        }
        return applyIfNonNull(delegate, JakartaELContextEventAdapter::new);
    }

    JakartaELContextEventAdapter(javax.el.ELContextEvent delegate) {
        super(asJakartaJsp(delegate.getELContext()));
        this.delegate = delegate;
    }

    public javax.el.ELContextEvent getDelegate() {
        return delegate;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy