Package org.apache.ivy.core.event.retrieve

Examples of org.apache.ivy.core.event.retrieve.EndRetrieveArtifactEvent


                        }
                        if (this.eventManager != null) {
                            // There is no unitary event for the mass sym linking.
                            // skip the event declaration.
                            if (!options.isMakeSymlinksInMass()) {
                                this.eventManager.fireIvyEvent(new EndRetrieveArtifactEvent(
                                        artifact, destFile));
                            }
                        }
                        totalCopiedSize += FileUtil.getFileLength(destFile);
                        report.addCopiedFile(destFile, artifact);
View Full Code Here


                        } else {
                            FileUtil.copy(archive, destFile, null, true);
                        }
                        if (this.eventManager != null) {
                            this.eventManager.fireIvyEvent(
                                new EndRetrieveArtifactEvent(artifact, destFile));
                        }
                        totalCopiedSize += destFile.length();
                        report.addCopiedFile(destFile, artifact);
                    } else {
                        Message.verbose("\t\tto " + destFile + " [NOT REQUIRED]");
View Full Code Here

                        } else {
                            FileUtil.copy(archive, destFile, null, true);
                        }
                        if (this.eventManager != null) {
                            this.eventManager.fireIvyEvent(
                                new EndRetrieveArtifactEvent(artifact, destFile));
                        }
                        totalCopiedSize += destFile.length();
                        targetsCopied++;
                    } else {
                        Message.verbose("\t\tto " + destFile + " [NOT REQUIRED]");
View Full Code Here

                        } else {
                            FileUtil.copy(archive, destFile, null, true);
                        }
                        if (this.eventManager != null) {
                            this.eventManager.fireIvyEvent(
                                new EndRetrieveArtifactEvent(artifact, destFile));
                        }
                        totalCopiedSize += destFile.length();
                        targetsCopied++;
                    } else {
                        Message.verbose("\t\tto " + destFile + " [NOT REQUIRED]");
View Full Code Here

                        } else {
                            FileUtil.copy(archive, destFile, null, true);
                        }
                        if (this.eventManager != null) {
                            this.eventManager.fireIvyEvent(
                                new EndRetrieveArtifactEvent(artifact, destFile));
                        }
                        totalCopiedSize += destFile.length();
                        report.addCopiedFile(destFile, artifact);
                    } else {
                        Message.verbose("\t\tto " + destFile + " [NOT REQUIRED]");
View Full Code Here

TOP

Related Classes of org.apache.ivy.core.event.retrieve.EndRetrieveArtifactEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.