Skip to content
Snippets Groups Projects
Commit 83e2bfa8 authored by juanf's avatar juanf
Browse files

BIS-773: Export UI, ongoing work

parent d2ea6e2b
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -48,6 +48,27 @@ define(["stjs"], function (stjs) { ...@@ -48,6 +48,27 @@ define(["stjs"], function (stjs) {
this.permId = permId; this.permId = permId;
}; };
prototype.hashCode = function() {
var result = this.exportableKind.hashCode();
result = 31 * result + this.permId.hashCode();
return result;
};
prototype.equals = function(obj) {
if (this == obj) {
return true;
}
if (obj == null || this.getClass() != obj.getClass()) {
return false;
}
var that = obj;
if (exportableKind != that.exportableKind)
{
return false;
}
return permId.equals(that.permId);
};
}, },
{ {
exportableKind: "ExportableKind", exportableKind: "ExportableKind",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment