Skip to content

Commit

Permalink
bumped to v 3.48.0 and added missing methods
Browse files Browse the repository at this point in the history
  • Loading branch information
flopma committed Apr 5, 2023
1 parent 6572f0c commit fcd7534
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-plugins</artifactId>
<version>3.38.1-01</version>
<version>3.48.0-01</version>
</parent>

<groupId>com.roumanoff.nexus</groupId>
<artifactId>nexus-crowd-plugin</artifactId>
<version>3.38.1</version>
<version>3.48.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<packaging>bundle</packaging>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
package org.sonatype.nexus.plugins.crowd.security;

import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Set;

Expand Down Expand Up @@ -84,4 +85,14 @@ public Privilege getPrivilege(String privilegeId) throws NoSuchPrivilegeExceptio
throw new NoSuchPrivilegeException(privilegeId);
}

@Override
public Privilege getPrivilegeByName(String privilegeName) throws NoSuchPrivilegeException {
throw new NoSuchPrivilegeException(privilegeName);
}

@Override
public List<Privilege> getPrivileges(Set<String> privilegeIds) {
return Collections.emptyList();
}

}

0 comments on commit fcd7534

Please sign in to comment.