474849505152535455
ka = new Integer(XMPPSContainer.DEFAULT_KEEPALIVE); } return new XMPPSContainer(name, ka.intValue()); } } catch (Exception e) { throw new ContainerCreateException( "Exception creating generic container", e); } }
2728293031323334
if (container == null) { container = new BitTorrentContainer(); } return container; } catch (IDCreateException e) { throw new ContainerCreateException(e); } }
2122232425262728
public IContainer createInstance(ContainerTypeDescription description, Object[] parameters) throws ContainerCreateException { try { return new MSNContainer(); } catch (IDCreateException e) { throw new ContainerCreateException(e); } }
242526272829303132
Object[] args) throws ContainerCreateException { ID guid; try { guid = IDFactory.getDefault().createGUID(); } catch (IDCreateException e) { throw new ContainerCreateException("Exception creating ID", e); } return new PHPBBContainer(guid); }
3132333435363738
localID = (LocalID) parameters[0]; else localID = (LocalID) IDFactory.getDefault().createID(LocalNamespace.NAME, parameters); return new LocalRemoteServiceContainer(localID); } catch (Exception e) { throw new ContainerCreateException("Could not create LocalRemoteServiceContainer", e); //$NON-NLS-1$ } }
484950515253545556
ka = new Integer(XMPPContainer.DEFAULT_KEEPALIVE); } return new XMPPContainer(name, ka.intValue()); } } catch (Exception e) { throw new ContainerCreateException( "Exception creating generic container", e); } }