Skip to content

Commit

Permalink
Merge pull request #7 from oleg-nenashev/ownership-plugin-integration
Browse files Browse the repository at this point in the history
Switch context-related API to Beta, we can remove these classes if needed
  • Loading branch information
oleg-nenashev committed Oct 10, 2018
2 parents 99d6ec0 + 4dd43fd commit f084d45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -30,9 +30,10 @@
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.Beta;
import org.kohsuke.accmod.restrictions.NoExternalUse;

@Restricted(NoExternalUse.class)
@Restricted(Beta.class)
public class UserContext {

@CheckForNull
Expand Down
Expand Up @@ -33,8 +33,10 @@
import javax.annotation.Nonnull;
import static org.jenkinsci.plugins.securityinspector.SecurityInspectorAction.getSessionId;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.Beta;
import org.kohsuke.accmod.restrictions.NoExternalUse;

@Restricted(Beta.class)
public class UserContextCache {

//TODO: fix concurrency issues
Expand Down

0 comments on commit f084d45

Please sign in to comment.