Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getAltDeployDescriptor (0.43 sec)

  1. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarWebModule.java

            new Node(web, nodeNameFor("web-uri", name), getPath());
            new Node(web, nodeNameFor("context-root", name), contextRoot);
            if (StringUtils.isNotEmpty(getAltDeployDescriptor())) {
                return new Node(parentModule, nodeNameFor("alt-dd", name), getAltDeployDescriptor());
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarModule.java

         * from the default location and file name required by the respective component specification.
         */
        String getAltDeployDescriptor();
    
        void setAltDeployDescriptor(String altDeployDescriptor);
    
        /**
         * Convert this object to an XML Node (or two nodes if altDeployDescriptor is not null).
         *
         * @param parentModule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultEarModule.java

        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public void setPath(String path) {
            this.path = path;
        }
    
        @Override
        public String getAltDeployDescriptor() {
            return altDeployDescriptor;
        }
    
        @Override
        public void setAltDeployDescriptor(String altDeployDescriptor) {
            this.altDeployDescriptor = altDeployDescriptor;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top