tbrugz.sqldiff.model.adapted.GrntDiff Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqldump Show documentation
Show all versions of sqldump Show documentation
Utility to dump schema and data from a RDBMS
package tbrugz.sqldiff.model.adapted;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import tbrugz.sqldiff.model.ChangeType;
import tbrugz.sqldump.dbmodel.PrivilegeType;
@XmlAccessorType(XmlAccessType.FIELD)
public class GrntDiff {
public ChangeType changeType;
public String schemaName;
public String tableName;
public PrivilegeType privilege;
public String grantee;
public boolean withGrantOption;
}