1 23 package org.objectweb.joram.client.connector; 24 25 26 30 public class TopicConnectionRequest 31 extends ConnectionRequest 32 implements javax.resource.spi.ConnectionRequestInfo  33 { 34 40 public TopicConnectionRequest(String userName, String password) 41 { 42 super(userName, password); 43 } 44 45 46 47 public int hashCode() 48 { 49 return ("PubSub:" + userName).hashCode(); 50 } 51 } 52 | Popular Tags |