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

com.storedobject.core.NewObject Maven / Gradle / Ivy

package com.storedobject.core;

public interface NewObject {
	
	public T newObject() throws Exception;
	
	public default T newObject(TransactionManager tm) throws Exception {
		return newObject();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy