final File archiveFile = File.createTempFile( "junk", "junk" );
archiveFile.deleteOnExit();
final String[] entriesAdded = new String[] { "hello", "there" };
final String[] entriesRemoved = new String[0];
final String[] entriesDeleted = new String[0];
final DeploymentSourceImpl ds =
new DeploymentSourceImpl( archiveFile.toString(),
true,
entriesAdded, entriesRemoved, entriesDeleted, null );
return( ds );