- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for ClassRealmConstituent (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmConstituent.java
* under the License. */ package org.apache.maven.classrealm; import java.io.File; /** * Describes a constituent of a class realm. * */ public interface ClassRealmConstituent { /** * Gets the group id of the constituent's artifact. * * @return The group id, never {@code null}. */ String getGroupId(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java
private final Map<String, ClassLoader> foreignImports; private final List<ClassRealmConstituent> constituents; DefaultClassRealmRequest( RealmType type, ClassLoader parent, List<String> parentImports, Map<String, ClassLoader> foreignImports, List<ClassRealmConstituent> constituents) { this.type = type; this.parent = parent;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
e); } } } } private void populateRealm(ClassRealm classRealm, List<ClassRealmConstituent> constituents) { logger.debug("Populating class realm {}", classRealm.getId()); for (ClassRealmConstituent constituent : constituents) { File file = constituent.getFile(); if (logger.isDebugEnabled()) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ArtifactClassRealmConstituent.java
* under the License. */ package org.apache.maven.classrealm; import java.io.File; import org.eclipse.aether.artifact.Artifact; /** */ class ArtifactClassRealmConstituent implements ClassRealmConstituent { private final Artifact artifact; ArtifactClassRealmConstituent(Artifact artifact) { this.artifact = artifact; } @Override public String getGroupId() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 1.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java
/** * Gets the constituents for the class realm. * * @return The modifiable list of constituents for the class realm, never {@code null}. */ List<ClassRealmConstituent> getConstituents();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0)