/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.resource.adapter.cassandra; import javax.resource.ResourceException; import org.teiid.core.BundleUtil; import org.teiid.resource.spi.BasicConnectionFactory; import org.teiid.resource.spi.BasicManagedConnectionFactory; public class CassandraManagedConnectionFactory extends BasicManagedConnectionFactory{ private static final long serialVersionUID = 6467964324032304311L; private String address; private String keyspace; private String username; private String password; private Integer port; public static final BundleUtil UTIL = BundleUtil.getBundleUtil(CassandraManagedConnectionFactory.class); @Override @SuppressWarnings("serial") public BasicConnectionFactory<CassandraConnectionImpl> createConnectionFactory() throws ResourceException { return new BasicConnectionFactory<CassandraConnectionImpl>() { @Override public CassandraConnectionImpl getConnection() throws ResourceException { return new CassandraConnectionImpl(CassandraManagedConnectionFactory.this); } }; } public String getKeyspace() { return keyspace; } public void setKeyspace(String keyspace) { this.keyspace = keyspace; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public Integer getPort() { return port; } public void setPort(Integer port) { this.port = port; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((address == null) ? 0 : address.hashCode()); result = prime * result + ((keyspace == null) ? 0 : keyspace.hashCode()); result = prime * result + ((password == null) ? 0 : password.hashCode()); result = prime * result + ((port == null) ? 0 : port.hashCode()); result = prime * result + ((username == null) ? 0 : username.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; CassandraManagedConnectionFactory other = (CassandraManagedConnectionFactory) obj; if (address == null) { if (other.address != null) return false; } else if (!address.equals(other.address)) return false; if (keyspace == null) { if (other.keyspace != null) return false; } else if (!keyspace.equals(other.keyspace)) return false; if (password == null) { if (other.password != null) return false; } else if (!password.equals(other.password)) return false; if (port == null) { if (other.port != null) return false; } else if (!port.equals(other.port)) return false; if (username == null) { if (other.username != null) return false; } else if (!username.equals(other.username)) return false; return true; } }