...
URL | http://<host>:<port>/openspecimen/rest/ng/auto-freezer-providers
|
Method | POST |
Input JSON |
Code Block |
---|
| {
"name": "Any thing that makes sense"
"implClass": "Concrete Java class that implements the interface AutomatedFreezer",
"props": {
"prop1": "custom property1 required for the AutomatedFreezer implementation",
"prop2": "custom property2 required for the AutomatedFreezer implementation",
.
.
.
}
} |
|
Example |
Code Block |
---|
{
"name": "Hamilton Bios",
"implClass": "com.krishagni.autofreezers.hamilton.core.BiosFreezer",
"props": {
"url": "http://localhost:9000/api/v11/",
"user": "admin",
"password": "admin",
"barcode_type": “ECC 200“,
"job_priority": "100",
"job_optimization_mode": "System",
"job_destination_labware_type": "IOCassette"
}
}
|
|
To create a dimensionless container specifying that container as automated freezer need to invoke below API. Once we do this step add/retrieve the specimens from this container will invoke APIs of the actual automated freezer.
...