Package org.apache.sandesha2.storage.inmemory

Source Code of org.apache.sandesha2.storage.inmemory.InMemoryRMDBeanMgr

/*
* Copyright 2004,2005 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.sandesha2.storage.inmemory;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.apache.axis2.context.AbstractContext;
import org.apache.sandesha2.Sandesha2Constants;
import org.apache.sandesha2.SandeshaException;
import org.apache.sandesha2.storage.SandeshaStorageException;
import org.apache.sandesha2.storage.beanmanagers.RMDBeanMgr;
import org.apache.sandesha2.storage.beans.RMDBean;
import org.apache.sandesha2.storage.beans.RMSBean;

public class InMemoryRMDBeanMgr extends InMemoryBeanMgr implements RMDBeanMgr {

  public InMemoryRMDBeanMgr(InMemoryStorageManager mgr, AbstractContext context) {
    super(mgr, context, Sandesha2Constants.BeanMAPs.NEXT_MESSAGE);
  }

  public boolean delete(String sequenceId) throws SandeshaStorageException {
    return super.delete(sequenceId);
  }

  public RMDBean retrieve(String sequenceId) throws SandeshaStorageException {
    return (RMDBean) super.retrieve(sequenceId);
  }

  public boolean insert(RMDBean bean) throws SandeshaStorageException {
   
    //checking weather there are any conflicting entries in the current table.
    List findBeanList = new ArrayList ();
   
    RMDBean findBean = new RMDBean ();
   
    if (bean.getSequenceID()!=null) {
      findBean.setSequenceID(bean.getSequenceID());
      findBeanList.add(findBean);
    }
   
    checkKeys (findBeanList);

    return super.insert(bean.getSequenceID(), bean);
  }

  public List find(RMDBean bean) throws SandeshaStorageException {
    return super.find(bean);
  }
 
  public boolean update(RMDBean bean) throws SandeshaStorageException {
    return super.update(bean.getSequenceID(), bean);
  }

  public Collection retrieveAll() throws SandeshaStorageException {
    return super.find(null);
  }
 
  public RMDBean findUnique(RMDBean bean) throws SandeshaException {
    return (RMDBean) super.findUnique(bean);
  }
}
TOP

Related Classes of org.apache.sandesha2.storage.inmemory.InMemoryRMDBeanMgr

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.