function LEHardNull() { }
function LEIndex() {
this.offset = 0;
}
function LEEOGlobalIDProxy() {
this.entityName = null;
this.token = null;
this.primaryKeys = null;
}
LEEOGlobalIDProxy.prototype.toString = function() {
if(null!=this.token) {
return "GID (token) : "+this.token;
}
else {
return "GID (pk) : "+this.entityName+" {"+this.primaryKeys.join(',')+"}";
}
}
function LEEOEnterpriseObjectProxy() {
this.globalID = null;
this.entityName = null;
this.properties = null;
}
LEEOEnterpriseObjectProxy.prototype.toString = function() {
return "EO ("+this.globalID.toString()+")";
}
