Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ClassRealmConstituent (0.43 sec)

  1. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top