Remove unused TenantUserPasswordAuthenticationToken (#1966)

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-11-08 12:29:19 +02:00
committed by GitHub
parent 03baf2a4c2
commit ade5723c8c
10 changed files with 99 additions and 223 deletions

View File

@@ -23,6 +23,11 @@ public interface BaseEntity extends Serializable, Identifiable<Long> {
return entity == null ? null : entity.getId();
}
/**
* @return user that created the {@link BaseEntity}.
*/
String getCreatedBy();
/**
* @return time in {@link TimeUnit#MILLISECONDS} when the {@link BaseEntity}
* was created.
@@ -30,9 +35,9 @@ public interface BaseEntity extends Serializable, Identifiable<Long> {
long getCreatedAt();
/**
* @return user that created the {@link BaseEntity}.
* @return user that updated the {@link BaseEntity} last.
*/
String getCreatedBy();
String getLastModifiedBy();
/**
* @return time in {@link TimeUnit#MILLISECONDS} when the {@link BaseEntity}
@@ -40,14 +45,8 @@ public interface BaseEntity extends Serializable, Identifiable<Long> {
*/
long getLastModifiedAt();
/**
* @return user that updated the {@link BaseEntity} last.
*/
String getLastModifiedBy();
/**
* @return version of the {@link BaseEntity}.
*/
int getOptLockRevision();
}
}