提交 03ef9eed 编写于 作者: D darcy

7080038: (ann) Serializable types in sun.reflect.annotation do not declare serialVersionUIDs

Reviewed-by: alanb
上级 32b355fa
/* /*
* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -40,6 +40,7 @@ import java.security.PrivilegedAction; ...@@ -40,6 +40,7 @@ import java.security.PrivilegedAction;
* @since 1.5 * @since 1.5
*/ */
class AnnotationInvocationHandler implements InvocationHandler, Serializable { class AnnotationInvocationHandler implements InvocationHandler, Serializable {
private static final long serialVersionUID = 6182022883658399397L;
private final Class<? extends Annotation> type; private final Class<? extends Annotation> type;
private final Map<String, Object> memberValues; private final Map<String, Object> memberValues;
......
/* /*
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -34,6 +34,7 @@ import java.lang.reflect.Method; ...@@ -34,6 +34,7 @@ import java.lang.reflect.Method;
* @since 1.5 * @since 1.5
*/ */
class AnnotationTypeMismatchExceptionProxy extends ExceptionProxy { class AnnotationTypeMismatchExceptionProxy extends ExceptionProxy {
private static final long serialVersionUID = 7844069490309503934L;
private Method member; private Method member;
private String foundType; private String foundType;
......
/* /*
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -32,6 +32,7 @@ package sun.reflect.annotation; ...@@ -32,6 +32,7 @@ package sun.reflect.annotation;
* @since 1.5 * @since 1.5
*/ */
public class EnumConstantNotPresentExceptionProxy extends ExceptionProxy { public class EnumConstantNotPresentExceptionProxy extends ExceptionProxy {
private static final long serialVersionUID = -604662101303187330L;
Class<? extends Enum<?>> enumType; Class<? extends Enum<?>> enumType;
String constName; String constName;
......
/* /*
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -33,6 +33,7 @@ import java.lang.annotation.*; ...@@ -33,6 +33,7 @@ import java.lang.annotation.*;
* @since 1.5 * @since 1.5
*/ */
public class TypeNotPresentExceptionProxy extends ExceptionProxy { public class TypeNotPresentExceptionProxy extends ExceptionProxy {
private static final long serialVersionUID = 5565925172427947573L;
String typeName; String typeName;
Throwable cause; Throwable cause;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册