Author: scamp Date: Wed Jan 19 09:27:32 2005 New Revision: 125628 URL: http://svn.apache.org/viewcvs?view=rev&rev=125628 Log: pulled over from globus contrib Added: incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/DialectDependentType.java incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/impl/ incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/topicexpression/ Modified: incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java
Modified: incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java?view=diff&rev=125628&p1=incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java&r1=125627&p2=incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java&r2=125628 ============================================================================== --- incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java (original) +++ incubator/hermes/trunk/src/java/org/apache/ws/notification/base/v1_2/porttype/impl/NotificationConsumerPortTypeImpl.java Wed Jan 19 09:27:32 2005 @@ -32,4 +32,8 @@ return; } + public void notify(NotifyDocument requestDoc) + { + + } } Added: incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/DialectDependentType.java Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/DialectDependentType.java?view=auto&rev=125628 ============================================================================== --- (empty file) +++ incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/DialectDependentType.java Wed Jan 19 09:27:32 2005 @@ -0,0 +1,30 @@ +/* + * Copyright 2004 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.ws.notification.topics; + +import org.apache.axis.types.URI; + +public interface DialectDependentType +{ + URI getDialect(); + + void setDialect(URI dialect); + + Object getValue(); + + void setValue(Object value); + +} Modified: incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java?view=diff&rev=125628&p1=incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java&r1=125627&p2=incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java&r2=125628 ============================================================================== --- incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java (original) +++ incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/Topic.java Wed Jan 19 09:27:32 2005 @@ -15,7 +15,8 @@ *=============================================================================*/ package org.apache.ws.notification.topics; -import org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType; + +import org.apache.ws.notification.topics.impl.TopicExpressionType; import javax.xml.namespace.QName; import java.util.Iterator; Modified: incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java Url: http://svn.apache.org/viewcvs/incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java?view=diff&rev=125628&p1=incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java&r1=125627&p2=incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java&r2=125628 ============================================================================== --- incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java (original) +++ incubator/hermes/trunk/src/java/org/apache/ws/notification/topics/TopicList.java Wed Jan 19 09:27:32 2005 @@ -15,7 +15,8 @@ *=============================================================================*/ package org.apache.ws.notification.topics; -import org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType; + +import org.apache.ws.notification.topics.impl.TopicExpressionType; import java.util.Collection; import java.util.Iterator; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
