org.openmbee.mms.jupyter.controllers.NotebooksResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jupyter Show documentation
Show all versions of jupyter Show documentation
jupyter, a module of the MMS
package org.openmbee.mms.jupyter.controllers;
import java.util.ArrayList;
import java.util.List;
import org.openmbee.mms.core.objects.BaseResponse;
import org.openmbee.mms.json.ElementJson;
public class NotebooksResponse extends BaseResponse {
private List notebooks;
public NotebooksResponse() {
this.notebooks = new ArrayList<>();
}
public List getNotebooks() {
return notebooks;
}
public NotebooksResponse setNotebooks(List notebooks) {
this.notebooks = notebooks;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy