Navigation Menu

Skip to content

Commit

Permalink
[JENKINS-28689] Included javadocs to explain that these SerialVersion…
Browse files Browse the repository at this point in the history
…UID was generated from 1.7
  • Loading branch information
Manuel Recena committed Aug 5, 2015
1 parent 0cefdd3 commit 050eebf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Expand Up @@ -36,6 +36,10 @@
*/
public class JNRRemoteAgentStarter extends MasterToSlaveCallable<RemoteAgent, Throwable> {

/**
* Ensure consistent serialization. Value generated from the 1.7 release.
* @since 1.8
*/
private static final long serialVersionUID = 5020446864184061252L;

/**
Expand Down
Expand Up @@ -70,6 +70,10 @@ public RemoteAgent start(Launcher launcher, final TaskListener listener) throws

private static class TomcatNativeInstalled extends MasterToSlaveCallable<Boolean, Throwable> {

/**
* Ensure consistent serialization. Value generated from the 1.7 release.
* @since 1.8
*/
private static final long serialVersionUID = 3234893369850673438L;

private final TaskListener listener;
Expand Down
Expand Up @@ -36,6 +36,10 @@
*/
public class MinaRemoteAgentStarter extends MasterToSlaveCallable<RemoteAgent, Throwable> {

/**
* Ensure consistent serialization. Value generated from the 1.7 release.
* @since 1.8
*/
private static final long serialVersionUID = -3757105406876098311L;

/**
Expand Down

0 comments on commit 050eebf

Please sign in to comment.