Skip to content
Open
Show file tree
Hide file tree
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 @@ -38,7 +38,7 @@ public void test() throws Exception {
}

private static void test(DoseResponseModelGeneralInformation information) throws Exception {
assertEquals("Listeria Monocytogenes (DR of gQMRA)", information.getModelName());
assertEquals("Listeria Monocytogenes (DR of gQMRA)", information.getName());
assertEquals("PUBLISHED SCIENTIFIC STUDIES", information.getSource());
assertEquals("DR000001", information.getIdentifier());
assertEquals(6, information.getAuthor().size());
Expand Down
185 changes: 92 additions & 93 deletions de.bund.bfr.knime.fsklab.metadata.model/gen/de/bund/bfr/metadata/swagger/Assay.java
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
/*
* RAKIP Generic model
* TODO
*
*
*
* OpenAPI spec version: 1.0.4
*
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/


package de.bund.bfr.metadata.swagger;

import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
Expand All @@ -22,12 +22,21 @@
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;

/**
* Assay
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-07-02T16:22:48.194+02:00")

@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.JavaClientCodegen", date = "2024-04-28T11:01:15.480200615Z[Etc/UTC]")
public class Assay {
@SerializedName("contaminationRange")
private String contaminationRange = null;

@SerializedName("uncertaintyValue")
private String uncertaintyValue = null;

@SerializedName("fatPercentage")
private String fatPercentage = null;

@SerializedName("name")
private String name = null;

Expand All @@ -37,23 +46,68 @@ public class Assay {
@SerializedName("moisturePercentage")
private String moisturePercentage = null;

@SerializedName("fatPercentage")
private String fatPercentage = null;
@SerializedName("leftCensoredData")
private String leftCensoredData = null;

@SerializedName("detectionLimit")
private String detectionLimit = null;

@SerializedName("quantificationLimit")
private String quantificationLimit = null;

@SerializedName("leftCensoredData")
private String leftCensoredData = null;
public Assay contaminationRange(String contaminationRange) {
this.contaminationRange = contaminationRange;
return this;
}

@SerializedName("contaminationRange")
private String contaminationRange = null;
/**
* Range of result of the analytical measure reported in the unit specified by the variable Hazard unit
* @return contaminationRange
**/
@ApiModelProperty(value = "Range of result of the analytical measure reported in the unit specified by the variable Hazard unit")
public String getContaminationRange() {
return contaminationRange;
}

@SerializedName("uncertaintyValue")
private String uncertaintyValue = null;
public void setContaminationRange(String contaminationRange) {
this.contaminationRange = contaminationRange;
}

public Assay uncertaintyValue(String uncertaintyValue) {
this.uncertaintyValue = uncertaintyValue;
return this;
}

/**
* Indicate the expanded uncertainty (usually 95% confidence interval) value associated with the measurement expressed in the unit reported in the field Hazard unit
* @return uncertaintyValue
**/
@ApiModelProperty(value = "Indicate the expanded uncertainty (usually 95% confidence interval) value associated with the measurement expressed in the unit reported in the field Hazard unit")
public String getUncertaintyValue() {
return uncertaintyValue;
}

public void setUncertaintyValue(String uncertaintyValue) {
this.uncertaintyValue = uncertaintyValue;
}

public Assay fatPercentage(String fatPercentage) {
this.fatPercentage = fatPercentage;
return this;
}

/**
* Percentage of fat in the original sample
* @return fatPercentage
**/
@ApiModelProperty(value = "Percentage of fat in the original sample")
public String getFatPercentage() {
return fatPercentage;
}

public void setFatPercentage(String fatPercentage) {
this.fatPercentage = fatPercentage;
}

public Assay name(String name) {
this.name = name;
Expand Down Expand Up @@ -109,22 +163,22 @@ public void setMoisturePercentage(String moisturePercentage) {
this.moisturePercentage = moisturePercentage;
}

public Assay fatPercentage(String fatPercentage) {
this.fatPercentage = fatPercentage;
public Assay leftCensoredData(String leftCensoredData) {
this.leftCensoredData = leftCensoredData;
return this;
}

/**
* Percentage of fat in the original sample
* @return fatPercentage
* Percentage of measures equal to LOQ and/or LOD
* @return leftCensoredData
**/
@ApiModelProperty(value = "Percentage of fat in the original sample")
public String getFatPercentage() {
return fatPercentage;
@ApiModelProperty(value = "Percentage of measures equal to LOQ and/or LOD")
public String getLeftCensoredData() {
return leftCensoredData;
}

public void setFatPercentage(String fatPercentage) {
this.fatPercentage = fatPercentage;
public void setLeftCensoredData(String leftCensoredData) {
this.leftCensoredData = leftCensoredData;
}

public Assay detectionLimit(String detectionLimit) {
Expand All @@ -133,10 +187,10 @@ public Assay detectionLimit(String detectionLimit) {
}

/**
* Limit of detection reported in the unit specified by the variable 'Hazard unit'
* Limit of detection reported in the unit specified by the variable Hazard unit
* @return detectionLimit
**/
@ApiModelProperty(value = "Limit of detection reported in the unit specified by the variable 'Hazard unit'")
@ApiModelProperty(value = "Limit of detection reported in the unit specified by the variable Hazard unit")
public String getDetectionLimit() {
return detectionLimit;
}
Expand All @@ -151,10 +205,10 @@ public Assay quantificationLimit(String quantificationLimit) {
}

/**
* Limit of quantification reported in the unit specified by the variable 'Hazard unit'
* Limit of quantification reported in the unit specified by the variable Hazard unit
* @return quantificationLimit
**/
@ApiModelProperty(value = "Limit of quantification reported in the unit specified by the variable 'Hazard unit'")
@ApiModelProperty(value = "Limit of quantification reported in the unit specified by the variable Hazard unit")
public String getQuantificationLimit() {
return quantificationLimit;
}
Expand All @@ -163,60 +217,6 @@ public void setQuantificationLimit(String quantificationLimit) {
this.quantificationLimit = quantificationLimit;
}

public Assay leftCensoredData(String leftCensoredData) {
this.leftCensoredData = leftCensoredData;
return this;
}

/**
* Percentage of measures equal to LOQ and/or LOD
* @return leftCensoredData
**/
@ApiModelProperty(value = "Percentage of measures equal to LOQ and/or LOD")
public String getLeftCensoredData() {
return leftCensoredData;
}

public void setLeftCensoredData(String leftCensoredData) {
this.leftCensoredData = leftCensoredData;
}

public Assay contaminationRange(String contaminationRange) {
this.contaminationRange = contaminationRange;
return this;
}

/**
* Range of result of the analytical measure reported in the unit specified by the variable 'Hazard unit' before censored data treatment
* @return contaminationRange
**/
@ApiModelProperty(value = "Range of result of the analytical measure reported in the unit specified by the variable 'Hazard unit' before censored data treatment")
public String getContaminationRange() {
return contaminationRange;
}

public void setContaminationRange(String contaminationRange) {
this.contaminationRange = contaminationRange;
}

public Assay uncertaintyValue(String uncertaintyValue) {
this.uncertaintyValue = uncertaintyValue;
return this;
}

/**
* Indicate the expanded uncertainty (usually 95% confidence interval) value associated with the measurement expressed in the unit reported in the field 'Hazard unit'
* @return uncertaintyValue
**/
@ApiModelProperty(value = "Indicate the expanded uncertainty (usually 95% confidence interval) value associated with the measurement expressed in the unit reported in the field 'Hazard unit'")
public String getUncertaintyValue() {
return uncertaintyValue;
}

public void setUncertaintyValue(String uncertaintyValue) {
this.uncertaintyValue = uncertaintyValue;
}


@Override
public boolean equals(java.lang.Object o) {
Expand All @@ -227,20 +227,20 @@ public boolean equals(java.lang.Object o) {
return false;
}
Assay assay = (Assay) o;
return Objects.equals(this.name, assay.name) &&
return Objects.equals(this.contaminationRange, assay.contaminationRange) &&
Objects.equals(this.uncertaintyValue, assay.uncertaintyValue) &&
Objects.equals(this.fatPercentage, assay.fatPercentage) &&
Objects.equals(this.name, assay.name) &&
Objects.equals(this.description, assay.description) &&
Objects.equals(this.moisturePercentage, assay.moisturePercentage) &&
Objects.equals(this.fatPercentage, assay.fatPercentage) &&
Objects.equals(this.detectionLimit, assay.detectionLimit) &&
Objects.equals(this.quantificationLimit, assay.quantificationLimit) &&
Objects.equals(this.leftCensoredData, assay.leftCensoredData) &&
Objects.equals(this.contaminationRange, assay.contaminationRange) &&
Objects.equals(this.uncertaintyValue, assay.uncertaintyValue);
Objects.equals(this.detectionLimit, assay.detectionLimit) &&
Objects.equals(this.quantificationLimit, assay.quantificationLimit);
}

@Override
public int hashCode() {
return Objects.hash(name, description, moisturePercentage, fatPercentage, detectionLimit, quantificationLimit, leftCensoredData, contaminationRange, uncertaintyValue);
return Objects.hash(contaminationRange, uncertaintyValue, fatPercentage, name, description, moisturePercentage, leftCensoredData, detectionLimit, quantificationLimit);
}


Expand All @@ -249,15 +249,15 @@ public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Assay {\n");

sb.append(" contaminationRange: ").append(toIndentedString(contaminationRange)).append("\n");
sb.append(" uncertaintyValue: ").append(toIndentedString(uncertaintyValue)).append("\n");
sb.append(" fatPercentage: ").append(toIndentedString(fatPercentage)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" moisturePercentage: ").append(toIndentedString(moisturePercentage)).append("\n");
sb.append(" fatPercentage: ").append(toIndentedString(fatPercentage)).append("\n");
sb.append(" leftCensoredData: ").append(toIndentedString(leftCensoredData)).append("\n");
sb.append(" detectionLimit: ").append(toIndentedString(detectionLimit)).append("\n");
sb.append(" quantificationLimit: ").append(toIndentedString(quantificationLimit)).append("\n");
sb.append(" leftCensoredData: ").append(toIndentedString(leftCensoredData)).append("\n");
sb.append(" contaminationRange: ").append(toIndentedString(contaminationRange)).append("\n");
sb.append(" uncertaintyValue: ").append(toIndentedString(uncertaintyValue)).append("\n");
sb.append("}");
return sb.toString();
}
Expand All @@ -274,4 +274,3 @@ private String toIndentedString(java.lang.Object o) {
}

}

Loading