提交 eeadf3a8 编写于 作者: J Jesse Glick 提交者: GitHub

Merge pull request #2477 from jglick/Secret-nullability

Adding a few nullability annotations
......@@ -29,12 +29,14 @@ import hudson.util.VariableResolver;
import org.kohsuke.stapler.DataBoundConstructor;
import java.util.Locale;
import javax.annotation.Nonnull;
/**
* @author Kohsuke Kawaguchi
*/
public class PasswordParameterValue extends ParameterValue {
@Nonnull
private final Secret value;
// kept for backward compatibility
......@@ -68,7 +70,8 @@ public class PasswordParameterValue extends ParameterValue {
public boolean isSensitive() {
return true;
}
@Nonnull
public Secret getValue() {
return value;
}
......
......@@ -42,6 +42,8 @@ import java.io.UnsupportedEncodingException;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.regex.Pattern;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.NoExternalUse;
......@@ -62,6 +64,7 @@ public final class Secret implements Serializable {
/**
* Unencrypted secret text.
*/
@Nonnull
private final String value;
private Secret(String value) {
......@@ -87,6 +90,7 @@ public final class Secret implements Serializable {
* Before using this method, ask yourself if you'd be better off using {@link Secret#toString(Secret)}
* to avoid NPE.
*/
@Nonnull
public String getPlainText() {
return value;
}
......@@ -144,7 +148,8 @@ public final class Secret implements Serializable {
* Reverse operation of {@link #getEncryptedValue()}. Returns null
* if the given cipher text was invalid.
*/
public static Secret decrypt(String data) {
@CheckForNull
public static Secret decrypt(@CheckForNull String data) {
if(data==null) return null;
try {
byte[] in = Base64.decode(data.toCharArray());
......@@ -192,10 +197,9 @@ public final class Secret implements Serializable {
*
* <p>
* Useful for recovering a value from a form field.
*
* @return never null
*/
public static Secret fromString(String data) {
@Nonnull
public static Secret fromString(@CheckForNull String data) {
data = Util.fixNull(data);
Secret s = decrypt(data);
if(s==null) s=new Secret(data);
......@@ -207,7 +211,8 @@ public final class Secret implements Serializable {
* To be consistent with {@link #fromString(String)}, this method doesn't distinguish
* empty password and null password.
*/
public static String toString(Secret s) {
@Nonnull
public static String toString(@CheckForNull Secret s) {
return s==null ? "" : s.value;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册