1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Fix compiling in Eclipse

This commit is contained in:
Rob Winch
2014-09-16 09:54:45 -05:00
parent 39d544b901
commit 02c3565e22
18 changed files with 11 additions and 41 deletions
@@ -204,7 +204,7 @@ class LdapAuthenticationProviderBuilderSecurityBuilderTests extends BaseSpringSp
auth.build()
}
abstract protected void configure(AuthenticationManagerBuilder auth)
abstract protected void configure(AuthenticationManagerBuilder auth) throws Exception
}
static Integer port;
@@ -62,7 +62,7 @@ public class MessageSecurityMetadataSourceRegistry {
* from. Uses {@link MessageSecurityMetadataSourceRegistry#pathMatcher(PathMatcher)}.
*
* @return the {@link Constraint} that is associated to the {@link MessageMatcher}
* @see {@link MessageSecurityMetadataSourceRegistry#pathMatcher(PathMatcher)}
* @see {@link MessageSecurityMetadataSourceRegistry#pathMatcher(PathMatcher)}
*/
public Constraint destinationMatchers(String... patterns) {
List<MatcherBuilder> matchers = new ArrayList<MatcherBuilder>(patterns.length);
@@ -278,7 +278,6 @@ public class MessageSecurityMetadataSourceRegistry {
this.matcher = matcher;
}
@Override
public MessageMatcher<?> build() {
return matcher;
}
@@ -291,7 +290,6 @@ public class MessageSecurityMetadataSourceRegistry {
this.pattern = pattern;
}
@Override
public MessageMatcher<?> build() {
return new SimpDestinationMessageMatcher(pattern, pathMatcher);
}
@@ -62,7 +62,6 @@ import java.util.List;
@Order(Ordered.HIGHEST_PRECEDENCE + 100)
public abstract class AbstractSecurityWebSocketMessageBrokerConfigurer extends AbstractWebSocketMessageBrokerConfigurer {
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {}
@Override