1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.resource.cci;
  6. /** ConnectionSpec is used by an application component to pass
  7. * connection request-specific properties to the ConnectionFactory.
  8. * getConnection method.
  9. *
  10. * <p>It is recommended that the ConnectionSpec interface be
  11. * implemented as a JavaBean to support tools. The properties
  12. * on the ConnectionSpec implementation class must be defined
  13. * through the getter and setter methods pattern.
  14. *
  15. * <p>The CCI specification defines a set of standard properties
  16. * for an ConnectionSpec. The properties are defined either on
  17. * a derived interface or an implementation class of an empty
  18. * ConnectionSpec interface. In addition, a resource adapter may
  19. * define additional properties specific to its underlying EIS.
  20. *
  21. * @author Rahul Sharma
  22. * @version 1.0 Public Draft 1
  23. * @see javax.resource.cci.ConnectionFactory
  24. **/
  25. public interface ConnectionSpec {
  26. }