com.sleepycat.je.jca.ra.JEConnectionMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of je Show documentation
Show all versions of je Show documentation
Berkley Database Java Edition - build and runtime support.
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2013 Oracle and/or its affiliates. All rights reserved.
*
*/
package com.sleepycat.je.jca.ra;
import javax.resource.spi.ManagedConnectionMetaData;
public class JEConnectionMetaData
implements ManagedConnectionMetaData {
public JEConnectionMetaData() {
}
public String getEISProductName() {
return "Berkeley DB Java Edition JCA";
}
public String getEISProductVersion() {
return "2.0";
}
public int getMaxConnections() {
/* Make a je.* parameter? */
return 100;
}
public String getUserName() {
return null;
}
}