if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
    operationBindings:[
        {
            operationId:"downloadDocument",
            operationType:"fetch"
        }
    ],
    allowAdvancedCriteria:true,
    ID:"documentDownload_DS_HibernateORM",
    dropExtraFields:true,
    fields:[
        {
            name:"PKID",
            hidden:true,
            type:"integer",
            primaryKey:true
        },
        {
            name:"DOCUMENT",
            title:"Document",
            type:"text"
        },
        {
            name:"NAME",
            type:"text"
        },
        {
            name:"UPLOADDATE",
            title:"Upload Date",
            type:"datetime"
        },
        {
            name:"DESCRIPTION",
            title:"Description",
            type:"text"
        },
        {
            name:"SIZE",
            title:"Size",
            type:"text"
        },
        {
            name:"CHECKSUM",
            title:"Checksum",
            type:"text"
        }
    ],
    mappedBeanClass:"com.paceap.eden.jpa.main.DeliverableFile"
})
