001    
002    package de.jw.cloud42.core.eventing;
003    /**
004     * 
005     * Some constants for usage within the eventing subproject.
006     * 
007     * @author fbitzer
008     *
009     */
010    public interface EventingConstants {
011    
012        String EVENTING_NAMESPACE = "http://schemas.xmlsoap.org/ws/2004/08/eventing";
013        
014        String NOTIFICATION_NAMESPACE = "http://webservice.cloud42.jw.de/notification";
015        
016        interface ElementNames {
017            String Subscribe = "Subscribe";
018            String Delivery = "Delivery";
019            String NotifyTo = "NotifyTo";
020        }
021    
022    }