public DistributionEvent()

in src/main/java/org/apache/sling/distribution/event/DistributionEvent.java [42:55]


    public DistributionEvent(
            String packageId,
            String componentName,
            String componentKind,
            String distType,
            String[] distPaths,
            String[] distDeepPaths) {
        this.packageId = packageId;
        this.componentName = componentName;
        this.componentKind = componentKind;
        this.distType = distType;
        this.distPaths = distPaths;
        this.distDeepPaths = distDeepPaths == null ? new String[] {} : distDeepPaths;
    }