public static DistributionEvent fromEvent()

in src/main/java/org/apache/sling/distribution/event/DistributionEvent.java [92:100]


    public static DistributionEvent fromEvent(Event event) {
        return new DistributionEvent(
                event.getProperty(DISTRIBUTION_PACKAGE_ID).toString(), 
                event.getProperty(DISTRIBUTION_COMPONENT_NAME).toString(),
                event.getProperty(DISTRIBUTION_COMPONENT_KIND).toString(),
                event.getProperty(DISTRIBUTION_TYPE).toString(),
                (String[])event.getProperty(DISTRIBUTION_PATHS),
                (String[])event.getProperty(DISTRIBUTION_DEEP_PATHS));
    }