Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add config injection annotations #75

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lic headers
paullatzelsperger committed Nov 8, 2024
commit 8b443324b491352d87c85d6a4f15fa1593acbc76
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation
*
*/

package org.eclipse.edc.runtime.metamodel.annotation;

import java.lang.annotation.Documented;
Original file line number Diff line number Diff line change
@@ -34,8 +34,7 @@
/**
* The setting description.
*
* @deprecated Please use {@link Setting#description()} to supply description. In future releases this property will hold the
* Setting's config key!
* @deprecated Please use {@link Setting#description()} to supply description. In future releases this property will hold the Setting's config key!
*/
@Deprecated
String value() default NULL;
@@ -46,6 +45,8 @@
String context() default NULL;

/**
* Type of the config value
*
* @deprecated this attribute is deprecated because it will be inferred from the field
*/
@Deprecated
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/*
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation
*
*/

package org.eclipse.edc.runtime.metamodel.annotation;

import java.lang.annotation.Documented;