Skip to content
Snippets Groups Projects
Commit ebc63871 authored by vkovtun's avatar vkovtun
Browse files

SSDM-13926: Fixing the failing JS vs Java API test.

parent fd8f558c
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -55,12 +55,12 @@ public class ExportOptions implements Serializable ...@@ -55,12 +55,12 @@ public class ExportOptions implements Serializable
return xlsTextFormat; return xlsTextFormat;
} }
public boolean isWithReferredTypes() public Boolean isWithReferredTypes()
{ {
return withReferredTypes; return withReferredTypes;
} }
public boolean isWithImportCompatibility() public Boolean isWithImportCompatibility()
{ {
return withImportCompatibility; return withImportCompatibility;
} }
......
...@@ -15,14 +15,14 @@ ...@@ -15,14 +15,14 @@
* *
*/ */
define(["stjs", "as/dto/exporter/data/IExportableFields"], function (stjs, ExportableFields) { define(["stjs", "as/dto/exporter/data/IExportableFields"], function (stjs, IExportableFields) {
var AllFields = function() { var AllFields = function() {
} }
stjs.extend( stjs.extend(
AllFields, AllFields,
ExportableFields, IExportableFields,
[ExportableFields], [IExportableFields],
function (constructor, prototype) { function (constructor, prototype) {
prototype["@type"] = "as.dto.exporter.data.AllFields"; prototype["@type"] = "as.dto.exporter.data.AllFields";
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* *
*/ */
define(["stjs", "as/dto/exporter/IExportableFields"], function (stjs, ExportableFields) { define(["stjs", "as/dto/exporter/IExportableFields"], function (stjs, IExportableFields) {
var SelectedFields = function(attributes, properties) { var SelectedFields = function(attributes, properties) {
this.attributes = attributes; this.attributes = attributes;
this.properties = properties; this.properties = properties;
...@@ -23,8 +23,8 @@ define(["stjs", "as/dto/exporter/IExportableFields"], function (stjs, Exportable ...@@ -23,8 +23,8 @@ define(["stjs", "as/dto/exporter/IExportableFields"], function (stjs, Exportable
stjs.extend( stjs.extend(
SelectedFields, SelectedFields,
ExportableFields, IExportableFields,
[ExportableFields], [IExportableFields],
function (constructor, prototype) { function (constructor, prototype) {
prototype["@type"] = "as.dto.exporter.data.SelectedFields"; prototype["@type"] = "as.dto.exporter.data.SelectedFields";
......
...@@ -40,11 +40,11 @@ define(["stjs"], function (stjs) { ...@@ -40,11 +40,11 @@ define(["stjs"], function (stjs) {
return this.xlsTextFormat; return this.xlsTextFormat;
}; };
prototype.getWithReferredTypes = function() { prototype.isWithReferredTypes = function() {
return this.withReferredTypes; return this.withReferredTypes;
}; };
prototype.getWithImportCompatibility = function() { prototype.isWithImportCompatibility = function() {
return this.withImportCompatibility; return this.withImportCompatibility;
}; };
}, },
......
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