Create User class.

This commit is contained in:
2025-11-04 13:53:42 +01:00
parent 6e69e54096
commit 6125cdade7

View File

@@ -0,0 +1,15 @@
package cm.soungui.guacamole.ext.wallix.sync.db;
public class User extends Entity {
@Override
public EntityType getType() {
return EntityType.USER;
}
@Override
public void setType(EntityType type) {
super.setType(type);
}
}