Skip to content

Commit

Permalink
make it a public interface instead of abstract class
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Kral <[email protected]>
  • Loading branch information
im-konge committed May 16, 2024
1 parent 9055b46 commit f6b6e14
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
package io.skodjob.testframe.installation;

/**
* Abstract class containing methods that can be implemented in particular setup classes based on the installation type.
* Interface containing methods that can be implemented in particular setup classes based on the installation type.
*/
public abstract class InstallationMethod {
public interface InstallationMethod {
/**
* Deploy deployment/operator abstract method
* Deploy deployment/operator method
*/
public abstract void install();
void install();

/**
* Delete deployment/operator abstract method
* Delete deployment/operator method
*/
public abstract void delete();
void delete();
}

0 comments on commit f6b6e14

Please sign in to comment.