View | Details | Raw Unified | Return to bug 43425
Collapse All | Expand All

(-)java/javax/ejb/EJB.java (+1 lines)
Lines 28-33 Link Here
28
28
29
public @interface EJB {
29
public @interface EJB {
30
   String name() default "";
30
   String name() default "";
31
   String description() default "";
31
   Class beanInterface() default java.lang.Object.class;
32
   Class beanInterface() default java.lang.Object.class;
32
   String beanName() default "";
33
   String beanName() default "";
33
   String mappedName() default "";
34
   String mappedName() default "";
(-)java/javax/persistence/PersistenceContext.java (+1 lines)
Lines 30-33 Link Here
30
   String name() default "";
30
   String name() default "";
31
   String unitName() default "";
31
   String unitName() default "";
32
   PersistenceContextType type() default PersistenceContextType.TRANSACTION;
32
   PersistenceContextType type() default PersistenceContextType.TRANSACTION;
33
   PersistenceProperty[] properties() default {};
33
}
34
}
(-)java/javax/persistence/PersistenceProperty.java (+30 lines)
Line 0 Link Here
1
/*
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 * contributor license agreements.  See the NOTICE file distributed with
4
 * this work for additional information regarding copyright ownership.
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 * (the "License"); you may not use this file except in compliance with
7
 * the License.  You may obtain a copy of the License at
8
 *
9
 *      http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
18
package javax.persistence;
19
20
import java.lang.annotation.Target;
21
import java.lang.annotation.Retention;
22
import java.lang.annotation.RetentionPolicy;
23
24
@Target({})
25
@Retention(RetentionPolicy.RUNTIME)
26
27
public @interface PersistenceProperty {
28
   String name();
29
   String value();
30
}
(-)java/javax/annotation/security/DenyAll.java (-1 / +1 lines)
Lines 23-29 Link Here
23
import java.lang.annotation.RetentionPolicy;
23
import java.lang.annotation.RetentionPolicy;
24
import java.lang.annotation.Target;
24
import java.lang.annotation.Target;
25
25
26
@Target({ElementType.TYPE, ElementType.METHOD})
26
@Target({ElementType.METHOD})
27
@Retention(RetentionPolicy.RUNTIME)
27
@Retention(RetentionPolicy.RUNTIME)
28
28
29
public @interface DenyAll {
29
public @interface DenyAll {

Return to bug 43425