mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-09 06:50:05 +00:00
Added "unprotected" method for tests
This commit is contained in:
parent
0b54eece28
commit
a4b522351f
@ -13,4 +13,6 @@ public interface TestBusinessBean {
|
|||||||
void setString(String s);
|
void setString(String s);
|
||||||
|
|
||||||
void doSomething();
|
void doSomething();
|
||||||
|
|
||||||
|
void unprotected();
|
||||||
}
|
}
|
||||||
|
@ -21,4 +21,7 @@ public class TestBusinessBeanImpl implements TestBusinessBean {
|
|||||||
|
|
||||||
public void doSomething() {
|
public void doSomething() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void unprotected() {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user