* Sets the type of the connector using known types.
*/
public void setURI(String url)
throws Exception
{
TypeFactory factory = TypeFactory.create();
Class type = factory.getDriverClassByUrl(ResourceAdapter.class, url);
setClass(type.getName());
ContainerProgram program = factory.getUrlProgram(url);
if (program == null) {
}
else if (_init == null)
_init = program;