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
return xlsTextFormat;
}
public boolean isWithReferredTypes()
public Boolean isWithReferredTypes()
{
return withReferredTypes;
}
public boolean isWithImportCompatibility()
public Boolean isWithImportCompatibility()
{
return withImportCompatibility;
}
......
......@@ -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() {
}
stjs.extend(
AllFields,
ExportableFields,
[ExportableFields],
IExportableFields,
[IExportableFields],
function (constructor, prototype) {
prototype["@type"] = "as.dto.exporter.data.AllFields";
......
......@@ -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) {
this.attributes = attributes;
this.properties = properties;
......@@ -23,8 +23,8 @@ define(["stjs", "as/dto/exporter/IExportableFields"], function (stjs, Exportable
stjs.extend(
SelectedFields,
ExportableFields,
[ExportableFields],
IExportableFields,
[IExportableFields],
function (constructor, prototype) {
prototype["@type"] = "as.dto.exporter.data.SelectedFields";
......
......@@ -40,11 +40,11 @@ define(["stjs"], function (stjs) {
return this.xlsTextFormat;
};
prototype.getWithReferredTypes = function() {
prototype.isWithReferredTypes = function() {
return this.withReferredTypes;
};
prototype.getWithImportCompatibility = function() {
prototype.isWithImportCompatibility = function() {
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