- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for ClassRealmConstituent (0.12 sec)
-
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(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (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;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (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()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (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; } public String getGroupId() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (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();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0)