1 28 29 package org.apache.commons.transaction.memory.jca; 30 31 import javax.resource.cci.ConnectionSpec ; 32 import javax.resource.spi.ConnectionRequestInfo ; 33 34 39 public class MapConnectionSpec implements ConnectionSpec , ConnectionRequestInfo { 40 41 protected String name; 42 43 public MapConnectionSpec(String name) { 44 this.name = name; 45 } 46 47 public String getName() { 48 return name; 49 } 50 51 } 52 | Popular Tags |