org.sdmlib.replication.util.LogEntryPOCreator 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.replication.util;
import org.sdmlib.models.pattern.util.PatternObjectCreator;
import org.sdmlib.replication.LogEntry;
import de.uniks.networkparser.IdMap;
public class LogEntryPOCreator extends PatternObjectCreator
{
@Override
public Object getSendableInstance(boolean reference)
{
if(reference) {
return new LogEntryPO(new LogEntry[]{});
} else {
return new LogEntryPO();
}
}
public static IdMap createIdMap(String sessionID) {
return CreatorCreator.createIdMap(sessionID);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy