[jboss-cvs] JBoss Messaging SVN: r4044 - branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Apr 14 07:30:16 EDT 2008


Author: bershath27
Date: 2008-04-14 07:30:16 -0400 (Mon, 14 Apr 2008)
New Revision: 4044

Added:
   branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/JBMTransactionManagerImpl.java
   branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageManagerImpl.java
   branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageReferenceManagerImpl.java
Log:
initial import

Added: branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/JBMTransactionManagerImpl.java
===================================================================
--- branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/JBMTransactionManagerImpl.java	                        (rev 0)
+++ branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/JBMTransactionManagerImpl.java	2008-04-14 11:30:16 UTC (rev 4044)
@@ -0,0 +1,68 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.messaging.jdbc.hb.factory;
+
+import org.jboss.messaging.jdbc.hb.dto.JBMTransactionPOJO;
+
+/**
+ * JBMTransactionManagerImpl , implementation class for the JBMTransactionManager
+ *
+ * @author <a href="mailto:bershath at gmail.com">Tyronne Wickramarathne</a>
+ * @version $Revision: 1 $
+ */
+
+public class JBMTransactionManagerImpl implements JBMTransactionManager {
+
+	/**
+	 * 
+	 */
+	public JBMTransactionManagerImpl() {
+		// TODO Auto-generated constructor stub
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.JBMTransactionManager#addTransaction(org.jboss.messaging.jdbc.hb.dto.JBMTransactionPOJO)
+	 */
+	public boolean addTransaction(JBMTransactionPOJO transactionPOJO) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.JBMTransactionManager#removeTransaction(org.jboss.messaging.jdbc.hb.dto.JBMTransactionPOJO)
+	 */
+	public boolean removeTransaction(JBMTransactionPOJO transactionPOJO) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.JBMTransactionManager#updateTransaction(org.jboss.messaging.jdbc.hb.dto.JBMTransactionPOJO)
+	 */
+	public JBMTransactionPOJO updateTransaction(
+			JBMTransactionPOJO transactionPOJO) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}

Added: branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageManagerImpl.java
===================================================================
--- branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageManagerImpl.java	                        (rev 0)
+++ branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageManagerImpl.java	2008-04-14 11:30:16 UTC (rev 4044)
@@ -0,0 +1,86 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.messaging.jdbc.hb.factory;
+
+import java.util.List;
+
+import org.jboss.messaging.jdbc.hb.dto.JBMMessagePOJO;
+
+
+/**
+ * MessageManagerImpl , implementation class for the MessageManager
+ *
+ * @author <a href="mailto:bershath at gmail.com">Tyronne Wickramarathne</a>
+ * @version $Revision: 1 $
+ */
+
+public class MessageManagerImpl implements MessageManager {
+
+	/**
+	 * 
+	 */
+	public MessageManagerImpl() {
+		// TODO Auto-generated constructor stub
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageManager#addMessage(org.jboss.messaging.jdbc.hb.dto.JBMMessagePOJO)
+	 */
+	public boolean addMessage(JBMMessagePOJO messagePOJO) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageManager#addMessages(java.util.List)
+	 */
+	public boolean addMessages(List<JBMMessagePOJO> messagePOJOs) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageManager#getAllMessages()
+	 */
+	public List<JBMMessagePOJO> getAllMessages() {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageManager#removeMessage(org.jboss.messaging.jdbc.hb.dto.JBMMessagePOJO)
+	 */
+	public boolean removeMessage(JBMMessagePOJO messagePOJO) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageManager#updateMessage(org.jboss.messaging.jdbc.hb.dto.JBMMessagePOJO)
+	 */
+	public JBMMessagePOJO updateMessage(JBMMessagePOJO messagePOJO) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}

Added: branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageReferenceManagerImpl.java
===================================================================
--- branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageReferenceManagerImpl.java	                        (rev 0)
+++ branches/Branch_Hibernate_Persistence/src/main/org/jboss/messaging/jdbc/hb/pm/src/org/jboss/messaging/jdbc/hb/factory/MessageReferenceManagerImpl.java	2008-04-14 11:30:16 UTC (rev 4044)
@@ -0,0 +1,153 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.messaging.jdbc.hb.factory;
+
+import java.math.BigInteger;
+import java.util.List;
+
+import org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePK;
+import org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePOJO;
+
+/**
+ * MessageReferenceManagerImpl , implementation class for the MessageReferenceManager 
+ *
+ * @author <a href="mailto:bershath at gmail.com">Tyronne Wickramarathne</a>
+ * @version $Revision: 1 $
+ */
+
+public class MessageReferenceManagerImpl implements MessageReferenceManager {
+
+	/**
+	 * 
+	 */
+	public MessageReferenceManagerImpl() {
+		// TODO Auto-generated constructor stub
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#addMessageReference(org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePOJO)
+	 */
+	public boolean addMessageReference(
+			JBMMessageReferencePOJO messageReferencePOJO) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#getMessageReference(org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePOJO)
+	 */
+	public JBMMessageReferencePOJO getMessageReference(
+			JBMMessageReferencePOJO messageReferencePOJO) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#getMessageReferencesByChannelId(java.math.BigInteger)
+	 */
+	public List<JBMMessageReferencePOJO> getMessageReferencesByChannelId(
+			BigInteger channelId) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#getMinMaxByChannelId(java.math.BigInteger, java.math.BigInteger)
+	 */
+	public List<JBMMessageReferencePOJO> getMinMaxByChannelId(
+			BigInteger minValue, BigInteger maxValue) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#getNonPagedReferences(java.math.BigInteger)
+	 */
+	public List<JBMMessageReferencePOJO> getNonPagedReferences(
+			BigInteger channelId) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#getPagedReferences(java.math.BigInteger, int, int)
+	 */
+	public List<JBMMessageReferencePOJO> getPagedReferences(
+			BigInteger channelId, int fromValue, int toValue) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#getReferences()
+	 */
+	public List<JBMMessageReferencePOJO> getReferences() {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#removeMessageReference(org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePOJO)
+	 */
+	public boolean removeMessageReference(
+			JBMMessageReferencePOJO messageReferencePOJO) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#updateChannelID(java.util.List)
+	 */
+	public boolean updateChannelID(
+			List<JBMMessageReferencePOJO> messageReferencePOJOs) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#updateDeliveryCount(org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePK)
+	 */
+	public boolean updateDeliveryCount(JBMMessageReferencePK messageReferencePK) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#updateMessageReference(org.jboss.messaging.jdbc.hb.dto.JBMMessageReferencePOJO)
+	 */
+	public JBMMessageReferencePOJO updateMessageReference(
+			JBMMessageReferencePOJO messageReferencePOJO) {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	/* (non-Javadoc)
+	 * @see org.jboss.messaging.jdbc.hb.factory.MessageReferenceManager#updateNonPagedReferences(java.util.List)
+	 */
+	public boolean updateNonPagedReferences(
+			List<JBMMessageReferencePOJO> nonPagedReferences) {
+		// TODO Auto-generated method stub
+		return false;
+	}
+
+}




More information about the jboss-cvs-commits mailing list