@Retention(value=RUNTIME) @Target(value=TYPE) public @interface Implementation
Used to specify a defined implementation for an entity. Example:
@Implementation(PersonImpl.class) public interface Person extends Entity { // ... }
The parameter is not optional.
Class<?>
value
public abstract Class<?> value
Copyright © 2007–2022 Atlassian. All rights reserved.