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

org.bimserver.validationreport.IssueInterface Maven / Gradle / Ivy

Go to download

Shared libraries, common parent for both BIMserver and BimServerClientLib

There is a newer version: 2.0.0
Show newest version
package org.bimserver.validationreport;

import java.io.IOException;

public interface IssueInterface {

	void add(Type messageType, String type, String guid, Long oid, String message, Object is, String shouldBe) throws IssueException;

	void add(Type messageType, String message, Object is, String shouldBe) throws IssueException;

	void addHeader(String translate);

	byte[] getBytes() throws IOException;

	void validate() throws IssueValidationException;
	
	void setCheckValid(String identifier, boolean valid);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy