1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.ws.extensions.eventing;
// $Id: EventingConstants.java 1757 2006-12-22 15:40:24Z thomas.diesler@jboss.com $
import java.net.URI;
import java.net.URISyntaxException;
import javax.xml.ws.addressing.AddressingBuilder;
import javax.xml.ws.addressing.AddressingConstants;
import org.jboss.ws.WSException;
/**
* @author Heiko Braun, <heiko@openj.net>
* @since 19-Dec-2005
*/
public class EventingConstants
{
private static AddressingBuilder WSA_BUILDER = AddressingBuilder.getAddressingBuilder();
private static AddressingConstants WSA_CONSTANTS = WSA_BUILDER.newAddressingConstants();
// common namespaces
public final static String NS_EVENTING = "http://schemas.xmlsoap.org/ws/2004/08/eventing";
public final static String PREFIX_EVENTING = "wse";
public final static String NS_ADDRESSING = WSA_CONSTANTS.getNamespaceURI();
// request /response action from specification
public final static String SUBSCRIBE_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe";
public final static String SUBSCRIBE_RESPONSE_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/SubscribeResponse";
public final static String UNSUBSCRIBE_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe";
public final static String UNSUBSCRIBE_RESPONSE_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/UnsubscribeResponse";
public final static String GET_STATUS_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/GetStatus";
public final static String GET_STATUS_RESPONSE_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/GetStatusResponse";
public final static String RENEW_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/Renew";
public final static String RENEW_RESPONSE_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/RenewResponse";
public final static String SUBSCRIPTION_END_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/eventing/SubscriptionEnd";
public final static String WSA_FAULT_ACTION = "http://schemas.xmlsoap.org/ws/2004/08/addressing/fault";
public final static String WSA_ANONYMOUS_URI = WSA_CONSTANTS.getAnonymousURI();
// failures
public final static String DELIVERY_FAILURE = "http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryFailure";
public final static String SOURCE_SHUTTING_DOWN = "http://schemas.xmlsoap.org/ws/2004/08/eventing/SourceShuttingDown";
public final static String SOURCE_CANCELING = "http://schemas.xmlsoap.org/ws/2004/08/eventing/SourceCanceling";
public final static String CODE_UNABLE_TO_PROCESS = "EventSourceUnableToProcess";
public final static String CODE_FILTER_NOT_SUPPORTED = "FilteringNotSupported";
public final static String CODE_REQUESTED_FILTER_UNAVAILABLE = "FilteringRequestedUnavailable";
public final static String CODE_INVALID_EXPIRATION_TIME = "InvalidExpirationTime";
public final static String CODE_UNABLE_TO_RENEW = "UnableToRenew";
public final static String CODE_INVALID_MESSAGE = "InvalidMessage";
// default config
public final static String DISPATCHER_JNDI_NAME = "EventDispatcher";
public final static long MAX_LEASE_TIME = 1000 * 60 * 10L;
public final static long DEFAULT_LEASE = 1000 * 60 * 5L;
private static URI DELIVERY_PUSH_URI = null;
private static URI DIALECT_XPATH_URI = null;
private static URI SUBSCRIBE_ACTION_URI = null;
public final static URI buildURI(String uri)
{
try
{
return new URI(uri);
}
catch (URISyntaxException e)
{
throw new IllegalArgumentException(e.getMessage());
}
}
public static final URI getDefaultFilterDialect()
{
try
{
return new URI("http://www.w3.org/TR/1999/REC-xpath-19991116");
}
catch (URISyntaxException e)
{
throw new WSException(e.getMessage());
}
}
public static final URI getDeliveryPush()
{
if (null == DELIVERY_PUSH_URI)
{
try
{
DELIVERY_PUSH_URI = new URI("http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/Push");
}
catch (URISyntaxException e)
{
//
}
}
return DELIVERY_PUSH_URI;
}
public static URI getDialectXPath()
{
if (null == DIALECT_XPATH_URI)
{
try
{
DIALECT_XPATH_URI = new URI("http://www.w3.org/TR/1999/REC-xpath-19991116");
}
catch (URISyntaxException e)
{
//
}
}
return DIALECT_XPATH_URI;
}
public static URI getSubscribeAction()
{
if (null == SUBSCRIBE_ACTION_URI)
{
try
{
SUBSCRIBE_ACTION_URI = new URI(SUBSCRIBE_ACTION);
}
catch (URISyntaxException e)
{
//
}
}
return SUBSCRIBE_ACTION_URI;
}
}
|