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

org.jboss.weld.bean.proxy.util.SerializableClientProxy Maven / Gradle / Ivy

There is a newer version: 6.0.0.Beta4
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2008, Red Hat, Inc. and/or its affiliates, and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * Licensed 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.jboss.weld.bean.proxy.util;

import java.io.ObjectStreamException;
import java.io.Serializable;

import javax.enterprise.inject.spi.Bean;

import org.jboss.weld.Container;
import org.jboss.weld.exceptions.WeldException;
import org.jboss.weld.logging.messages.BeanMessage;
import org.jboss.weld.serialization.spi.ContextualStore;

/**
 * A wrapper mostly for client proxies which provides header information useful to generate the client proxy class in a VM before the proxy object is
 * deserialized. Only client proxies really need this extra step for serialization and deserialization since the other proxy classes are generated during bean
 * archive deployment.
 *
 * @author David Allen
 */
public class SerializableClientProxy implements Serializable {

    private static final long serialVersionUID = -46820068707447753L;

    private final String beanId;

    public SerializableClientProxy(final String beanId) {
        this.beanId = beanId;
    }

    /**
     * Always returns the original proxy object that was serialized.
     *
     * @return the proxy object
     * @throws java.io.ObjectStreamException
     */

    Object readResolve() throws ObjectStreamException {
        Bean bean = Container.instance().services().get(ContextualStore.class)., Object>getContextual(beanId);
        if (bean == null) {
            throw new WeldException(BeanMessage.DESERIALIZATED_BEAN_WAS_NULL, beanId);
        }
        return Container.instance().deploymentManager().getClientProxyProvider().getClientProxy(bean);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy