{
ForwardIndexEntry<Long, ServerEntry, Long> forwardEntry = ( ForwardIndexEntry<Long, ServerEntry, Long> ) cursor
.get();
ServerEntry webAppEntry = configPartition.lookup( forwardEntry.getId() );
WebApp app = new WebApp();
app.setWarFile( getString( "ads-httpWarFile", webAppEntry ) );
EntryAttribute ctxPathAttr = webAppEntry.get( "ads-httpAppCtxPath" );
if ( ctxPathAttr != null )
{
app.setContextPath( ctxPathAttr.getString() );
}
webApps.add( app );
}