/providers/ejb2/src/main/java/com/opensymphony/module/propertyset/ejb/EJBPropertySet.java

https://bitbucket.org/opensymphony/propertyset · Java · 174 lines · 82 code · 22 blank · 70 comment · 2 complexity · dad0eeafa46b1a4dcc67aa9f05364f5c MD5 · raw file

  1. /*
  2. * Copyright (c) 2002-2003 by OpenSymphony
  3. * All rights reserved.
  4. */
  5. package com.opensymphony.module.propertyset.ejb;
  6. import com.opensymphony.module.propertyset.*;
  7. import com.opensymphony.util.DataUtil;
  8. import com.opensymphony.util.EJBUtils;
  9. import java.io.Serializable;
  10. import java.rmi.RemoteException;
  11. import java.util.Collection;
  12. import java.util.Map;
  13. import javax.ejb.CreateException;
  14. import javax.naming.NamingException;
  15. /**
  16. * The EJBPropertySet is an implementation of
  17. * {@link com.opensymphony.module.propertyset.PropertySet} that
  18. * uses Enterprise JavaBeans to store and retrieve Properties.
  19. *
  20. * <p>This class is a proxy to the
  21. * {@link com.opensymphony.module.propertyset.ejb.PropertyStore}
  22. * Session Bean that handles the PropertySet and behind the scenes
  23. * delegates to various Entity Beans to persist the data in an
  24. * efficient way.</p>
  25. *
  26. * <p>Each method in the proxy will catch any thrown
  27. * {@link java.rmi.RemoteException} and rethrow it wrapped in a
  28. * {@link com.opensymphony.module.propertyset.PropertyImplementationException} .</p>
  29. *
  30. * <h3>Usage</h3>
  31. *
  32. * <p>In order to use an EJBPropertySet, a PropertyStore Session Bean
  33. * must first be retrieved that represents the PropertySet data. This
  34. * is typically either returned by another EJB, or looked up using
  35. * an JNDI location for PropertyStoreHome and an int ID for the actual
  36. * PropertySet used.</p>
  37. *
  38. * <b>Required Args</b>
  39. * <ul>
  40. * <li><b>entityId</b> - Long that holds the ID of this entity</li>
  41. * <li><b>entityName</b> - String that holds the name of this entity type</li>
  42. * </ul>
  43. * <p>
  44. *
  45. * <b>Optional Configuration</b>
  46. * <ul>
  47. * <li><b>storeLocation</b> - the JNDI name for the PropertyStore EJB lookup (defaults to os.PropertyStore)</li>
  48. * </ul>
  49. *
  50. * @author <a href="mailto:joe@wirestation.co.uk">
  51. * @author <a href="mailto:plightbo@hotmail.com">Pat Lightbody</a>
  52. * @version $Revision$
  53. *
  54. * @see com.opensymphony.module.propertyset.PropertySet
  55. * @see com.opensymphony.module.propertyset.ejb.PropertyStore
  56. * @see com.opensymphony.module.propertyset.ejb.PropertyStoreHome
  57. */
  58. public class EJBPropertySet extends AbstractPropertySet implements Serializable {
  59. //~ Instance fields ////////////////////////////////////////////////////////
  60. private PropertyStore store;
  61. private String entityName;
  62. private long entityId;
  63. //~ Methods ////////////////////////////////////////////////////////////////
  64. /**
  65. * Proxy to {@link com.opensymphony.module.propertyset.ejb.PropertyStore#getKeys(java.lang.String,long,java.lang.String,int)}
  66. */
  67. public Collection getKeys(String prefix, int type) throws PropertyException {
  68. try {
  69. return store.getKeys(entityName, entityId, prefix, type);
  70. } catch (RemoteException re) {
  71. throw new PropertyImplementationException(re);
  72. }
  73. }
  74. /**
  75. * Proxy to {@link com.opensymphony.module.propertyset.ejb.PropertyStore#getType(java.lang.String,long,java.lang.String)}
  76. */
  77. public int getType(String key) throws PropertyException {
  78. try {
  79. return store.getType(entityName, entityId, key);
  80. } catch (RemoteException re) {
  81. throw new PropertyImplementationException(re);
  82. }
  83. }
  84. /**
  85. * Proxy to {@link com.opensymphony.module.propertyset.ejb.PropertyStore#exists(java.lang.String,long,java.lang.String)}
  86. */
  87. public boolean exists(String key) throws PropertyException {
  88. try {
  89. return store.exists(entityName, entityId, key);
  90. } catch (RemoteException re) {
  91. throw new PropertyImplementationException(re);
  92. }
  93. }
  94. public void init(Map config, Map args) {
  95. entityId = DataUtil.getLong((Long) args.get("entityId"));
  96. entityName = (String) args.get("entityName");
  97. String storeLocation = (String) config.get("storeLocation");
  98. if (storeLocation == null) {
  99. storeLocation = "PropertyStore";
  100. }
  101. try {
  102. PropertyStoreHome home = (PropertyStoreHome) EJBUtils.lookup(storeLocation, PropertyStoreHome.class);
  103. store = home.create();
  104. } catch (NamingException e) {
  105. e.printStackTrace();
  106. } catch (RemoteException e) {
  107. e.printStackTrace();
  108. } catch (CreateException e) {
  109. e.printStackTrace();
  110. }
  111. }
  112. /**
  113. * Proxy to {@link PropertyStore#removeEntry(String, long, String)}
  114. */
  115. public void remove() throws PropertyException {
  116. try {
  117. store.removeEntry(entityName, entityId);
  118. } catch (RemoteException re) {
  119. throw new PropertyImplementationException(re);
  120. }
  121. }
  122. /**
  123. * Proxy to {@link PropertyStore#removeEntry(String, long, String)}
  124. */
  125. public void remove(String key) throws PropertyException {
  126. try {
  127. store.removeEntry(entityName, entityId, key);
  128. } catch (RemoteException re) {
  129. throw new PropertyImplementationException(re);
  130. }
  131. }
  132. /**
  133. * Proxy to {@link com.opensymphony.module.propertyset.ejb.PropertyStore#set(java.lang.String,long,int,java.lang.String,java.io.Serializable)}
  134. */
  135. protected void setImpl(int type, String key, Object value) throws PropertyException {
  136. try {
  137. store.set(entityName, entityId, type, key, (Serializable) value);
  138. } catch (RemoteException re) {
  139. throw new PropertyImplementationException(re);
  140. }
  141. }
  142. /**
  143. * Proxy to {@link com.opensymphony.module.propertyset.ejb.PropertyStore#get(java.lang.String,long,int,java.lang.String)}
  144. */
  145. protected Object get(int type, String key) throws PropertyException {
  146. try {
  147. return store.get(entityName, entityId, type, key);
  148. } catch (RemoteException re) {
  149. throw new PropertyImplementationException(re);
  150. }
  151. }
  152. }