1 22 package org.jboss.test.deployers.rar.mcf1; 23 24 import javax.resource.spi.ConnectionRequestInfo ; 25 26 public class MCF1ConnectionRequestInfo implements ConnectionRequestInfo  27 { 28 29 private static final long serialVersionUID = 1L; 30 31 public boolean equals(Object other) 32 { 33 if (other == null || other instanceof MCF1ConnectionRequestInfo == false) 34 return false; 35 return true; 36 } 37 38 public int hashCode() 39 { 40 return 1; 41 } 42 } 43 | Popular Tags |