Remove unused TenantUserPasswordAuthenticationToken (#1966)
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -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();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user