Skip to content

Commit

Permalink
[JENKINS-23417] Noting new api members is stable branch
Browse files Browse the repository at this point in the history
  • Loading branch information
olivergondza committed Jul 3, 2014
1 parent 7e1d848 commit d2a9f10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/src/main/java/jenkins/security/SecurityListener.java
Expand Up @@ -85,7 +85,7 @@ public abstract class SecurityListener implements ExtensionPoint {
// TODO event for new user signed up (e.g. in HudsonPrivateSecurityRealm)
// TODO event for CAPTCHA failure

/** @since 1.569 */
/** @since 1.569, 1.565.1 */
public static void fireAuthenticated(@Nonnull UserDetails details) {
if (LOGGER.isLoggable(Level.FINE)) {
List<String> groups = new ArrayList<String>();
Expand All @@ -101,31 +101,31 @@ public static void fireAuthenticated(@Nonnull UserDetails details) {
}
}

/** @since 1.569 */
/** @since 1.569, 1.565.1 */
public static void fireFailedToAuthenticate(@Nonnull String username) {
LOGGER.log(Level.FINE, "failed to authenticate: {0}", username);
for (SecurityListener l : all()) {
l.failedToAuthenticate(username);
}
}

/** @since 1.569 */
/** @since 1.569, 1.565.1 */
public static void fireLoggedIn(@Nonnull String username) {
LOGGER.log(Level.FINE, "logged in: {0}", username);
for (SecurityListener l : all()) {
l.loggedIn(username);
}
}

/** @since 1.569 */
/** @since 1.569, 1.565.1 */
public static void fireFailedToLogIn(@Nonnull String username) {
LOGGER.log(Level.FINE, "failed to log in: {0}", username);
for (SecurityListener l : all()) {
l.failedToLogIn(username);
}
}

/** @since 1.569 */
/** @since 1.569, 1.565.1 */
public static void fireLoggedOut(@Nonnull String username) {
LOGGER.log(Level.FINE, "logged out: {0}", username);
for (SecurityListener l : all()) {
Expand Down

0 comments on commit d2a9f10

Please sign in to comment.