[jbossws-commits] JBossWS SVN: r4511 - in stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm: spec200702 and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Sep 3 06:49:45 EDT 2007


Author: richard.opalka at jboss.com
Date: 2007-09-03 06:49:45 -0400 (Mon, 03 Sep 2007)
New Revision: 4511

Added:
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/AckRequestedImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceResponseImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceResponseImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/MessageFactoryImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/ProviderImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceAcknowledgementImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceFaultImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceImpl.java
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceResponseImpl.java
Modified:
   stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spi/Provider.java
Log:
adding new WS-RM provider to be implemented

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/AckRequestedImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/AckRequestedImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/AckRequestedImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,93 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested
+ */
+final class AckRequestedImpl implements AckRequested
+{
+   
+   AckRequestedImpl()
+   {
+      // allow inside package use only
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested#getMessage()
+    */
+   public long getMessage()
+   {
+      // TODO Auto-generated method stub
+      return 0;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested#setMessage(long)
+    */
+   public void setMessage(long lastMessageId)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+   
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/AckRequestedImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,93 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence
+ */
+final class CloseSequenceImpl implements CloseSequence
+{
+   
+   CloseSequenceImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence#getLastMsgNumber()
+    */
+   public void getLastMsgNumber()
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence#setLastMsgNumber(long)
+    */
+   public void setLastMsgNumber(long lastMsgNumber)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceResponseImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceResponseImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceResponseImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,75 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequenceResponse;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequenceResponse
+ */
+final class CloseSequenceResponseImpl implements CloseSequenceResponse
+{
+
+   CloseSequenceResponseImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequenceResponse#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequenceResponse#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CloseSequenceResponseImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,120 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence
+ */
+final class CreateSequenceImpl implements CreateSequence
+{
+
+   CreateSequenceImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#getAcksTo()
+    */
+   public String getAcksTo()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#getExpires()
+    */
+   public String getExpires()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#getOffer()
+    */
+   public Offer getOffer()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#newOffer()
+    */
+   public Offer newOffer()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#setAcksTo(java.lang.String)
+    */
+   public void setAcksTo(String address)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#setExpires(java.lang.String)
+    */
+   public void setExpires(String duration)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence#setOffer(org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence.Offer)
+    */
+   public void setOffer(Offer offer)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceResponseImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceResponseImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceResponseImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,139 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse;
+import org.jboss.ws.extensions.wsrm.spi.protocol.IncompleteSequenceBehavior;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse
+ */
+final class CreateSequenceResponseImpl implements CreateSequenceResponse
+{
+
+   CreateSequenceResponseImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#getAccept()
+    */
+   public Accept getAccept()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#getDuration()
+    */
+   public String getDuration()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#getIncompleteSequenceBehavior()
+    */
+   public IncompleteSequenceBehavior getIncompleteSequenceBehavior()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#newAccept()
+    */
+   public Accept newAccept()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#setAccept(org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse.Accept)
+    */
+   public void setAccept(Accept accept)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#setExpires(java.lang.String)
+    */
+   public void setExpires(String duration)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse#setIncompleteSequenceBehavior(org.jboss.ws.extensions.wsrm.spi.protocol.IncompleteSequenceBehavior)
+    */
+   public void setIncompleteSequenceBehavior(IncompleteSequenceBehavior incompletSequenceBehaviour)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/CreateSequenceResponseImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/MessageFactoryImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/MessageFactoryImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/MessageFactoryImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,135 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.MessageFactory;
+import org.jboss.ws.extensions.wsrm.spi.protocol.AckRequested;
+import org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequence;
+import org.jboss.ws.extensions.wsrm.spi.protocol.CloseSequenceResponse;
+import org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequence;
+import org.jboss.ws.extensions.wsrm.spi.protocol.CreateSequenceResponse;
+import org.jboss.ws.extensions.wsrm.spi.protocol.Sequence;
+import org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement;
+import org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault;
+import org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence;
+import org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequenceResponse;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory
+ */
+final class MessageFactoryImpl implements MessageFactory
+{
+   
+   private static final MessageFactory INSTANCE = new MessageFactoryImpl();
+   
+   private MessageFactoryImpl()
+   {
+      // forbidden inheritance
+   }
+   
+   public static MessageFactory getInstance()
+   {
+      return INSTANCE;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newAckRequested()
+    */
+   public AckRequested newAckRequested()
+   {
+      return new AckRequestedImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newCloseSequence()
+    */
+   public CloseSequence newCloseSequence()
+   {
+      return new CloseSequenceImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newCloseSequenceResponse()
+    */
+   public CloseSequenceResponse newCloseSequenceResponse()
+   {
+      return new CloseSequenceResponseImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newCreateSequence()
+    */
+   public CreateSequence newCreateSequence()
+   {
+      return new CreateSequenceImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newCreateSequenceResponse()
+    */
+   public CreateSequenceResponse newCreateSequenceResponse()
+   {
+      return new CreateSequenceResponseImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newSequence()
+    */
+   public Sequence newSequence()
+   {
+      return new SequenceImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newSequenceAcknowledgement()
+    */
+   public SequenceAcknowledgement newSequenceAcknowledgement()
+   {
+      return new SequenceAcknowledgementImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newSequenceFault()
+    */
+   public SequenceFault newSequenceFault()
+   {
+      return new SequenceFaultImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newTerminateSequence()
+    */
+   public TerminateSequence newTerminateSequence()
+   {
+      return new TerminateSequenceImpl();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.MessageFactory#newTerminateSequenceResponse()
+    */
+   public TerminateSequenceResponse newTerminateSequenceResponse()
+   {
+      return new TerminateSequenceResponseImpl();
+   }
+   
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/MessageFactoryImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/ProviderImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/ProviderImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/ProviderImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,65 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.MessageFactory;
+import org.jboss.ws.extensions.wsrm.spi.Provider;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.Provider
+ */
+public final class ProviderImpl extends Provider
+{
+   
+   static final String IMPLEMENTATION_VERSION = "http://docs.oasis-open.org/ws-rx/wsrm/200702";
+   private static final Provider INSTANCE = new ProviderImpl();
+   
+   private ProviderImpl()
+   {
+      // forbidden inheritance
+   }
+   
+   public static Provider getInstance()
+   {
+      return INSTANCE;
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.Provider#getMessageFactory()
+    */
+   @Override
+   public final MessageFactory getMessageFactory()
+   {
+      return MessageFactoryImpl.getInstance();
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.Provider#getNamespaceURI()
+    */
+   @Override
+   public final String getNamespaceURI()
+   {
+      return IMPLEMENTATION_VERSION;
+   }
+   
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/ProviderImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceAcknowledgementImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceAcknowledgementImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceAcknowledgementImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,158 @@
+/*
+ * 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.wsrm.spec200702;
+
+import java.util.List;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement
+ */
+final class SequenceAcknowledgementImpl implements SequenceAcknowledgement
+{
+   
+   SequenceAcknowledgementImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#addAcknowledgementRange(org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement.AcknowledgementRange)
+    */
+   public void addAcknowledgementRange(AcknowledgementRange acknowledgementRange)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#addNack(long)
+    */
+   public void addNack(long messageNumber)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#getAcknowledgementRanges()
+    */
+   public List<AcknowledgementRange> getAcknowledgementRanges()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#getNacks()
+    */
+   public List<Long> getNacks()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#isFinal()
+    */
+   public boolean isFinal()
+   {
+      // TODO Auto-generated method stub
+      return false;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#isNone()
+    */
+   public boolean isNone()
+   {
+      // TODO Auto-generated method stub
+      return false;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#newAcknowledgementRange()
+    */
+   public AcknowledgementRange newAcknowledgementRange()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#setFinal(boolean)
+    */
+   public void setFinal(boolean isFinal)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceAcknowledgement#setNone(boolean)
+    */
+   public void setNone(boolean isNone)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceAcknowledgementImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceFaultImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceFaultImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceFaultImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,94 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault;
+import org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFaultCode;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault
+ */
+final class SequenceFaultImpl implements SequenceFault
+{
+
+   SequenceFaultImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault#getDetail()
+    */
+   public Exception getDetail()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault#getFaultCode()
+    */
+   public SequenceFaultCode getFaultCode()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault#setDetail(java.lang.Exception)
+    */
+   public void setDetail(Exception detail)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFault#setFaultCode(org.jboss.ws.extensions.wsrm.spi.protocol.SequenceFaultCode)
+    */
+   public void setFaultCode(SequenceFaultCode faultCode)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceFaultImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,111 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.Sequence;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence
+ */
+final class SequenceImpl implements Sequence
+{
+
+   SequenceImpl()
+   {
+      // allow inside package use only
+   }
+   
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence#getMessageNumber()
+    */
+   public long getMessageNumber()
+   {
+      // TODO Auto-generated method stub
+      return 0;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence#isLastMessage()
+    */
+   public boolean isLastMessage()
+   {
+      // TODO Auto-generated method stub
+      return false;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence#setLastMessage(boolean)
+    */
+   public void setLastMessage(boolean lastMessage)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.Sequence#setMessageNumber(long)
+    */
+   public void setMessageNumber(long messageNumber)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/SequenceImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,93 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence
+ */
+final class TerminateSequenceImpl implements TerminateSequence
+{
+   
+   TerminateSequenceImpl()
+   {
+      // allow inside package use only
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence#getLastMsgNumber()
+    */
+   public void getLastMsgNumber()
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequence#setLastMsgNumber(long)
+    */
+   public void setLastMsgNumber(long lastMsgNumber)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceResponseImpl.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceResponseImpl.java	                        (rev 0)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceResponseImpl.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -0,0 +1,75 @@
+/*
+ * 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.wsrm.spec200702;
+
+import org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequenceResponse;
+import org.w3c.dom.Element;
+
+/*
+ * @author richard.opalka at jboss.com
+ * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequenceResponse
+ */
+final class TerminateSequenceResponseImpl implements TerminateSequenceResponse
+{
+   
+   TerminateSequenceResponseImpl()
+   {
+      // allow inside package use only
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequenceResponse#getIdentifier()
+    */
+   public String getIdentifier()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.TerminateSequenceResponse#setIdentifier(java.lang.String)
+    */
+   public void setIdentifier(String identifier)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#fromXML(org.w3c.dom.Element)
+    */
+   public void fromXML(Element e)
+   {
+      // TODO Auto-generated method stub
+
+   }
+
+   /*
+    * @see org.jboss.ws.extensions.wsrm.spi.protocol.XMLSerializable#toXML()
+    */
+   public Element toXML()
+   {
+      // TODO Auto-generated method stub
+      return null;
+   }
+
+}


Property changes on: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spec200702/TerminateSequenceResponseImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spi/Provider.java
===================================================================
--- stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spi/Provider.java	2007-09-03 09:31:45 UTC (rev 4510)
+++ stack/native/branches/ropalka/trunk/src/main/java/org/jboss/ws/extensions/wsrm/spi/Provider.java	2007-09-03 10:49:45 UTC (rev 4511)
@@ -32,7 +32,7 @@
     * Must be overriden in the subclasses
     * @param targetNamespace
     */
-   protected Provider(String targetNamespace)
+   protected Provider()
    {
    }
    




More information about the jbossws-commits mailing list