![JAR search and dependency download from the Maven repository](/logo.png)
ca.carleton.gcrc.couch.export.SchemaExportInfo Maven / Gradle / Ivy
package ca.carleton.gcrc.couch.export;
import java.util.List;
import java.util.Vector;
import org.json.JSONArray;
import org.json.JSONObject;
public class SchemaExportInfo {
static public SchemaExportInfo parseJson(JSONArray exportJson) throws Exception {
SchemaExportInfo exportInfo = new SchemaExportInfo();
for(int i=0,e=exportJson.length(); i properties = new Vector();
public List getProperties() {
return properties;
}
public void addProperty(SchemaExportProperty property){
properties.add(property);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy