All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.swf.db.model.io.ModelReader Maven / Gradle / Ivy

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