org.jboss.weld.bean.proxy.util.SerializableClientProxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-osgi-bundle Show documentation
Show all versions of weld-osgi-bundle Show documentation
Weld runtime packaged as an OSGi bundle
/*
* 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);
}
}