Refactoring/Improving source: repository & fix log() (#1601) (#1602)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-02-03 17:25:30 +02:00
committed by GitHub
parent a7f7b0fea8
commit ba685ef429
14 changed files with 61 additions and 98 deletions

View File

@@ -9,13 +9,14 @@
*/
package org.eclipse.hawkbit.api;
import lombok.AccessLevel;
import lombok.NoArgsConstructor;
/**
* Utility class for Base10 to Base62 conversion and vice versa. Base62 has the
* benefit of being shorter in ASCII representation than Base10.
*/
@NoArgsConstructor
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public final class Base62Util {
private static final String BASE62_ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";