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