提交 7c978d95 编写于 作者: D Daniel Beck

Clean up at-since

上级 817f1149
......@@ -1773,7 +1773,7 @@ public class Functions {
}
/**
* Gets only one {@link SimplePageDecorator}.
* @since FIXME
* @since 2.128
*/
public static SimplePageDecorator getSimplePageDecorator() {
return SimplePageDecorator.first();
......
......@@ -39,7 +39,7 @@ import java.util.List;
* Any listed plugin with disabled dependencies will have its dependencies enabled transitively. Note that enabling an
* already enabled plugin does nothing.
*
* @since TODO
* @since 2.136
*/
@Extension
public class EnablePluginCommand extends CLICommand {
......
......@@ -478,7 +478,7 @@ public final class DirectoryBrowserSupport implements HttpResponse {
*
* @return A long value representing the time the file was last modified, measured in milliseconds since
* the epoch (00:00:00 GMT, January 1, 1970), or 0L if is not possible to obtain the times.
* @since TODO
* @since 2.127
*/
public long getLastModified() {
return lastModified;
......@@ -488,7 +488,7 @@ public final class DirectoryBrowserSupport implements HttpResponse {
*
* @return A Calendar representing the time the file was last modified, it lastModified is 0L
* it will return 00:00:00 GMT, January 1, 1970.
* @since TODO
* @since 2.127
*/
@Restricted(NoExternalUse.class)
public Calendar getLastModifiedAsCalendar() {
......
......@@ -1656,7 +1656,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable, OnMas
/**
* Base64 encoded SHA-256 checksum of the downloaded file, if it could be computed.
*
* @since TODO
* @since 2.130
*/
@CheckForNull
public String getComputedSHA256() {
......@@ -1668,7 +1668,7 @@ public class UpdateCenter extends AbstractModelObject implements Saveable, OnMas
/**
* Base64 encoded SHA-512 checksum of the downloaded file, if it could be computed.
*
* @since TODO
* @since 2.130
*/
@CheckForNull
public String getComputedSHA512() {
......
......@@ -653,7 +653,7 @@ public class UpdateSite {
/**
* The base64 encoded SHA-256 checksum of the file.
* Can be null if not provided by the update site.
* @since TODO
* @since 2.130
*/
public String getSha256() {
return sha256;
......@@ -662,7 +662,7 @@ public class UpdateSite {
/**
* The base64 encoded SHA-512 checksum of the file.
* Can be null if not provided by the update site.
* @since TODO
* @since 2.130
*/
public String getSha512() {
return sha512;
......
......@@ -801,7 +801,7 @@ public class User extends AbstractModelObject implements AccessControlled, Descr
* Returns the folder that store all the user information
* Useful for plugins to save a user-specific file aside the config.xml
*
* @since TODO
* @since 2.129
*/
public File getUserFolder(){
return getUserFolderFor(this.id);
......
......@@ -69,7 +69,7 @@ public final class PermissionGroup implements Iterable<Permission>, Comparable<P
* @param owner sets {@link #owner}
* @param title sets {@link #title}
* @throws IllegalStateException if this group was already registered
* @since TODO
* @since 2.127
*/
public PermissionGroup(String id, @Nonnull Class owner, Localizable title) throws IllegalStateException {
this.owner = owner;
......
......@@ -70,7 +70,7 @@ public class EnvironmentVariablesNodeProperty extends NodeProperty<Node> {
/**
* @return environment variables using same data type as constructor parameter.
* @since TODO
* @since 2.136
*/
public List<Entry> getEnv() {
return envVars.entrySet().stream().map(Entry::new).collect(Collectors.toList());
......
......@@ -529,7 +529,7 @@ public class SlaveComputer extends Computer {
* remote FS is specified as a relative path.
* @see #getAbsoluteRemoteFs()
* @return the remote FS root absolute path or {@code null} if the agent is off-line or don't have connect permission.
* @since TODO
* @since 2.125
*/
@Exported
@Restricted(DoNotUse.class)
......
......@@ -33,7 +33,7 @@ import hudson.model.Descriptor;
* <p>
* This class provides a few hooks to augment the HTML of the login page.
*
* @since TODO
* @since 2.128
*/
public class SimplePageDecorator extends Descriptor<SimplePageDecorator> implements ExtensionPoint, Describable<SimplePageDecorator> {
......
......@@ -100,7 +100,7 @@ public class ApiTokenProperty extends UserProperty {
* Disabled by default due to the security reasons.
* It's the version of {@link #SHOW_LEGACY_TOKEN_TO_ADMINS} for the new API Token system (SECURITY-200).
*
* @since TODO
* @since 2.129
*/
@SuppressFBWarnings(value = "MS_SHOULD_BE_FINAL", justification = "Accessible via System Groovy Scripts")
private static /* not final */ boolean ADMIN_CAN_GENERATE_NEW_TOKENS =
......
......@@ -31,7 +31,7 @@ import org.jenkinsci.Symbol;
/**
* Configuration for the new token generation when a user is created
*
* @since TODO
* @since 2.129
*/
@Extension
@Symbol("apiToken")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册