Browse Source
* [Improvement-11913] Mask password when creating/editing alert instances3.2.1-prepare
c3Vu
1 year ago
committed by
GitHub
7 changed files with 19 additions and 103 deletions
@ -1,87 +0,0 @@ |
|||||||
/* |
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
|
||||||
* contributor license agreements. See the NOTICE file distributed with |
|
||||||
* this work for additional information regarding copyright ownership. |
|
||||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
|
||||||
* (the "License"); you may not use this file except in compliance with |
|
||||||
* the License. You may obtain a copy of the License at |
|
||||||
* |
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
* |
|
||||||
* Unless required by applicable law or agreed to in writing, software |
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
* See the License for the specific language governing permissions and |
|
||||||
* limitations under the License. |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.apache.dolphinscheduler.spi.params; |
|
||||||
|
|
||||||
import org.apache.dolphinscheduler.spi.params.base.FormType; |
|
||||||
import org.apache.dolphinscheduler.spi.params.base.ParamsProps; |
|
||||||
import org.apache.dolphinscheduler.spi.params.base.PluginParams; |
|
||||||
import org.apache.dolphinscheduler.spi.params.base.Validate; |
|
||||||
|
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.List; |
|
||||||
|
|
||||||
/** |
|
||||||
* password param |
|
||||||
*/ |
|
||||||
public class PasswordParam extends PluginParams { |
|
||||||
|
|
||||||
private PasswordParam(Builder builder) { |
|
||||||
super(builder); |
|
||||||
} |
|
||||||
|
|
||||||
public static Builder newBuilder(String name, String title) { |
|
||||||
return new Builder(name, title); |
|
||||||
} |
|
||||||
|
|
||||||
public static class Builder extends PluginParams.Builder { |
|
||||||
|
|
||||||
public Builder(String name, String title) { |
|
||||||
super(name, FormType.INPUT, title); |
|
||||||
ParamsProps paramsProps = new ParamsProps(); |
|
||||||
this.props = paramsProps; |
|
||||||
} |
|
||||||
|
|
||||||
public Builder setPlaceholder(String placeholder) { |
|
||||||
this.props.setPlaceholder(placeholder); |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public Builder addValidate(Validate validate) { |
|
||||||
if (this.validateList == null) { |
|
||||||
this.validateList = new ArrayList<>(); |
|
||||||
} |
|
||||||
this.validateList.add(validate); |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public Builder setName(String name) { |
|
||||||
this.name = name; |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public Builder setTitle(String title) { |
|
||||||
this.title = title; |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public Builder setValue(Object value) { |
|
||||||
this.value = value; |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
public Builder setValidateList(List<Validate> validateList) { |
|
||||||
this.validateList = validateList; |
|
||||||
return this; |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public PasswordParam build() { |
|
||||||
return new PasswordParam(this); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue