Skip to content

Commit

Permalink
Update utils classes according to convention
Browse files Browse the repository at this point in the history
Signed-off-by: Moti Asayag <masayag@redhat.com>
  • Loading branch information
masayag authored and openshift-merge-robot committed May 8, 2023
1 parent 62a32fa commit b456934
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

import java.util.Base64;

public class CredUtils {
public abstract class CredUtils {

private CredUtils() {
}

/**
* Generates a Base64 encoding of username:password string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* @author Richard Wang (Github: richardW98)
*/

public class WorkContextUtils {
public abstract class WorkContextUtils {

private WorkContextUtils() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
*/

@Slf4j
public final class SdkUtils {
public abstract class SdkUtils {

private SdkUtils() {
}

/**
* Executes a @see FuncExecutor. Waits at most 60 seconds for a successful result of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* RestUtils is a utility class. All its methods must be declared as static so they can't
* be overridden.
*/
public final class RestUtils {
public abstract class RestUtils {

/**
* The constructor is private so it'll prevent instantiation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/

@Slf4j
public class SecurityUtils {
public abstract class SecurityUtils {

private SecurityUtils() {
}
Expand Down

0 comments on commit b456934

Please sign in to comment.