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

org.apache.deltaspike.jsf.impl.message.DefaultJsfMessage Maven / Gradle / Ivy

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.deltaspike.jsf.impl.message;


import jakarta.enterprise.inject.Typed;
import jakarta.faces.application.FacesMessage;
import jakarta.faces.component.UIComponent;

import java.lang.reflect.Proxy;

import org.apache.deltaspike.core.api.message.MessageBundle;
import org.apache.deltaspike.core.impl.message.MessageBundleInvocationHandler;
import org.apache.deltaspike.core.util.ClassUtils;
import org.apache.deltaspike.jsf.api.message.JsfMessage;

/**
 * Default implementation of JsfMessage.
 * The complexity of setting the FacesMessage is
 * done in the {@link JsfMessageBundleInvocationHandler}.
 */
@Typed
public class DefaultJsfMessage implements JsfMessage
{
    private final String clientId;
    private final Class type;
    private final MessageBundleInvocationHandler invocationHandler;

    /**
     * The Message type
     * @param type
     * @param clientId
     */
    public DefaultJsfMessage(Class type, String clientId, MessageBundleInvocationHandler invocationHandler)
    {
        this.type = type;
        this.clientId = clientId;
        this.invocationHandler = invocationHandler;

        if (! type.isInterface() || type.getAnnotation(MessageBundle.class) == null)
        {
            throw new IllegalArgumentException("JsfMessage must only be used for interfaces " +
                "annotated with @MessageBundle!");
        }
    }

    @Override
    public JsfMessage forClientId(String clientId)
    {
        return new DefaultJsfMessage<>(type, clientId, invocationHandler);
    }

    @Override
    public JsfMessage forComponent(UIComponent uiComponent)
    {
        return forClientId(uiComponent.getClientId());
    }

    @Override
    public T addError()
    {
        return getMessage(FacesMessage.SEVERITY_ERROR);
    }

    @Override
    public T addFatal()
    {
        return getMessage(FacesMessage.SEVERITY_FATAL);
    }

    @Override
    public T addInfo()
    {
        return getMessage(FacesMessage.SEVERITY_INFO);
    }

    @Override
    public T addWarn()
    {
        return getMessage(FacesMessage.SEVERITY_WARN);
    }

    @Override
    public T get()
    {
        return getMessage(null);
    }

    private T getMessage(FacesMessage.Severity severity)
    {
        return type.cast(Proxy.newProxyInstance(ClassUtils.getClassLoader(null),
                new Class[]{type}, new JsfMessageBundleInvocationHandler(severity, clientId, invocationHandler)));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy