org.sdmlib.modelcouch.util.CreatorCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SDMLib Show documentation
Show all versions of SDMLib Show documentation
SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.
package org.sdmlib.modelcouch.util;
import de.uniks.networkparser.IdMap;
class CreatorCreator{
public static IdMap createIdMap(String sessionID)
{
IdMap jsonIdMap = new IdMap().withSessionId(sessionID);
jsonIdMap.with(new ModelCouchCreator());
jsonIdMap.with(new ModelCouchPOCreator());
jsonIdMap.with(new ModelDBListenerCreator());
jsonIdMap.with(new ModelDBListenerPOCreator());
return jsonIdMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy