Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ private static String getItemsDataType(CodegenProperty items) {
return items.dataType;
}

class ExtendedCodegenParameter extends CodegenParameter {
public class ExtendedCodegenParameter extends CodegenParameter {
public String dataTypeAlternate;
public boolean isUniqueId; // this parameter represents a unique id (x-isUniqueId: true)
public List<CodegenProperty> readOnlyVars; // a list of read-only properties
Expand Down Expand Up @@ -1194,7 +1194,7 @@ private void setReadOnlyVars() {
}
}

class ExtendedCodegenProperty extends CodegenProperty {
public class ExtendedCodegenProperty extends CodegenProperty {
public String dataTypeAlternate;
public boolean isEntity; //Is a model containing an "id" property marked as isUniqueId and which matches the 'x-entityId' value.
public boolean isUniqueId; // The property represents a unique id (x-isUniqueId: true)
Expand Down Expand Up @@ -1347,7 +1347,7 @@ public String toString() {
}
}

class ExtendedCodegenOperation extends CodegenOperation {
public class ExtendedCodegenOperation extends CodegenOperation {
boolean hasReturnPassthroughVoid, returnTypeSupportsEntities, returnTypeIsModel, returnTypeIsArray;
String returnTypeAlternate, returnBaseTypeAlternate, returnPassthrough;

Expand Down Expand Up @@ -1464,7 +1464,7 @@ public String toString() {
}
}

class ExtendedCodegenModel extends CodegenModel {
public class ExtendedCodegenModel extends CodegenModel {
@Getter @Setter
public Set<String> modelImports = new TreeSet<String>();
public boolean isEntity; // Is a model containing an "id" property marked as isUniqueId
Expand Down