Skip to content

Commit

Permalink
[issue 114] - Adding Javadoc to the provisioner classes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiobrz committed Dec 11, 2023
1 parent f4798e2 commit 5037f6b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
import io.fabric8.openshift.api.model.Template;
import lombok.extern.slf4j.Slf4j;

/**
* Provisions PostgreSql on OpenShift via PostgreSql template available on OpenShift and based on a
* {@link PostgreSQLTemplateOpenShiftApplication} concrete implementation.
*
*/
@Slf4j
public class PostgreSQLTemplateOpenShiftProvisioner implements OpenShiftProvisioner<PostgreSQLTemplateOpenShiftApplication> {
private FailFastCheck ffCheck = () -> false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

import lombok.extern.slf4j.Slf4j;

/**
* Provides logic to obtain a {@link PostgreSQLTemplateOpenShiftProvisioner} instance that is initialized with a
* given {@link PostgreSQLTemplateOpenShiftApplication} instance.
*/
@Slf4j
public class PostgreSQLTemplateOpenShiftProvisionerFactory
implements ProvisionerFactory<PostgreSQLTemplateOpenShiftProvisioner> {
Expand Down

0 comments on commit 5037f6b

Please sign in to comment.