private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException
{
this.webBeansContext = WebBeansContext.currentInstance();
final ObjectInputStream inputStream = new OwbCustomObjectInputStream(in, WebBeansUtil.getCurrentClassLoader());
this.injectionClazz = (Type)inputStream.readObject();
this.qualifierAnnotations = (Set<Annotation>)inputStream.readObject();
this.injectionPointClazz = (Class<?>) inputStream.readObject();
}