forked from eclipse-ee4j/jersey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added suport for HK2 factories, binders to comply with documentation.
Added documentation for Jersey Injection. Signed-off-by: jansupol <jan.supol@oracle.com>
- Loading branch information
Showing
13 changed files
with
790 additions
and
54 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
core-common/src/main/java/org/glassfish/jersey/innate/inject/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
/** | ||
* Jersey innate injection related packages. The innate packages will not be opened by JPMS outside of Jersey. | ||
* Not for public use. | ||
*/ | ||
package org.glassfish.jersey.innate.inject; |
53 changes: 53 additions & 0 deletions
53
core-common/src/main/java/org/glassfish/jersey/innate/inject/spi/ExternalRegistrables.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package org.glassfish.jersey.innate.inject.spi; | ||
|
||
import javax.ws.rs.RuntimeType; | ||
import java.util.List; | ||
|
||
/** | ||
* Provide a list of classes or interfaces the InjectionManager can support. | ||
*/ | ||
public interface ExternalRegistrables { | ||
|
||
/** | ||
* Contract - RuntimeType pair. For a contract applicable on both client and server, use {@code null} as RuntimeType. | ||
*/ | ||
public static final class ClassRuntimeTypePair { | ||
private final Class<?> contract; | ||
private final RuntimeType runtimeType; | ||
|
||
public ClassRuntimeTypePair(Class<?> contract, RuntimeType runtimeType) { | ||
this.contract = contract; | ||
this.runtimeType = runtimeType; | ||
} | ||
|
||
public Class<?> getContract() { | ||
return contract; | ||
} | ||
|
||
public RuntimeType getRuntimeType() { | ||
return runtimeType; | ||
} | ||
} | ||
|
||
/** | ||
* List of contracts that can be registered into Jersey to be passed by the external injection framework. | ||
* @return list of contracts allowed to be registered in Jersey. | ||
*/ | ||
List<ClassRuntimeTypePair> registrableContracts(); | ||
} |
21 changes: 21 additions & 0 deletions
21
core-common/src/main/java/org/glassfish/jersey/innate/inject/spi/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
/** | ||
* Jersey innate injection related packages. The innate packages will not be opened by JPMS outside of Jersey. | ||
* Not for public use. | ||
*/ | ||
package org.glassfish.jersey.innate.inject.spi; |
21 changes: 21 additions & 0 deletions
21
core-common/src/main/java/org/glassfish/jersey/innate/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
/** | ||
* Jersey innate packages. The innate packages will not be opened by JPMS outside of Jersey. | ||
* Not for public use. | ||
*/ | ||
package org.glassfish.jersey.innate; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.