
com.venky.swf.db.model.io.ModelReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-db Show documentation
Show all versions of swf-db Show documentation
Succinct Web Framework - Db
The newest version!
package com.venky.swf.db.model.io;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import com.venky.swf.db.model.Model;
public interface ModelReader {
public List read(InputStream in) throws IOException;
public List read(InputStream in, String rootElementName) throws IOException;
public M read(T source);
public M read(T source,boolean ensureAccessibleByLoggedInUser);
public M read(T source, boolean ensureAccessibleByLoggedInUser, boolean updateAttibutesFromElement);
public void setInvalidReferencesAllowed(boolean invalidReferencesAllowed);
public boolean isInvalidReferencesAllowed();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy