Class PasswordEntityMasker
- java.lang.Object
-
- org.openmetadata.service.secrets.masker.EntityMasker
-
- org.openmetadata.service.secrets.masker.PasswordEntityMasker
-
public class PasswordEntityMasker extends EntityMasker
-
-
Field Summary
Fields Modifier and Type Field Description static StringPASSWORD_MASK-
Fields inherited from class org.openmetadata.service.secrets.masker.EntityMasker
DO_NOT_MASK_CLASSES
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedPasswordEntityMasker()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmaskAuthenticationMechanism(String name, AuthenticationMechanism authenticationMechanism)voidmaskIngestionPipeline(IngestionPipeline ingestionPipeline)ObjectmaskServiceConnectionConfig(Object connectionConfig, String connectionType, ServiceType serviceType)WorkflowmaskWorkflow(Workflow workflow)voidunmaskAuthenticationMechanism(String name, AuthenticationMechanism authenticationMechanism, AuthenticationMechanism originalAuthenticationMechanism)voidunmaskIngestionPipeline(IngestionPipeline ingestionPipeline, IngestionPipeline originalIngestionPipeline)ObjectunmaskServiceConnectionConfig(Object connectionConfig, Object originalConnectionConfig, String connectionType, ServiceType serviceType)WorkflowunmaskWorkflow(Workflow workflow, Workflow originalWorkflow)
-
-
-
Field Detail
-
PASSWORD_MASK
public static final String PASSWORD_MASK
- See Also:
- Constant Field Values
-
-
Method Detail
-
maskServiceConnectionConfig
public Object maskServiceConnectionConfig(Object connectionConfig, String connectionType, ServiceType serviceType)
- Specified by:
maskServiceConnectionConfigin classEntityMasker
-
maskAuthenticationMechanism
public void maskAuthenticationMechanism(String name, AuthenticationMechanism authenticationMechanism)
- Specified by:
maskAuthenticationMechanismin classEntityMasker
-
maskIngestionPipeline
public void maskIngestionPipeline(IngestionPipeline ingestionPipeline)
- Specified by:
maskIngestionPipelinein classEntityMasker
-
maskWorkflow
public Workflow maskWorkflow(Workflow workflow)
- Specified by:
maskWorkflowin classEntityMasker
-
unmaskServiceConnectionConfig
public Object unmaskServiceConnectionConfig(Object connectionConfig, Object originalConnectionConfig, String connectionType, ServiceType serviceType)
- Specified by:
unmaskServiceConnectionConfigin classEntityMasker
-
unmaskIngestionPipeline
public void unmaskIngestionPipeline(IngestionPipeline ingestionPipeline, IngestionPipeline originalIngestionPipeline)
- Specified by:
unmaskIngestionPipelinein classEntityMasker
-
unmaskAuthenticationMechanism
public void unmaskAuthenticationMechanism(String name, AuthenticationMechanism authenticationMechanism, AuthenticationMechanism originalAuthenticationMechanism)
- Specified by:
unmaskAuthenticationMechanismin classEntityMasker
-
unmaskWorkflow
public Workflow unmaskWorkflow(Workflow workflow, Workflow originalWorkflow)
- Specified by:
unmaskWorkflowin classEntityMasker
-
-