01: /*
02: * ==============================================================================
03: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
04: * use this file except in compliance with the License. You may obtain a copy of
05: * the License at
06: *
07: * http://www.apache.org/licenses/LICENSE-2.0
08: *
09: * Unless required by applicable law or agreed to in writing, software
10: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12: * License for the specific language governing permissions and limitations under
13: * the License.
14: */
15: package wicket.jmx;
16:
17: import wicket.authorization.IUnauthorizedComponentInstantiationListener;
18:
19: /**
20: * Security settings.
21: *
22: * @author eelcohillenius
23: */
24: public interface SecuritySettingsMBean {
25: /**
26: * Gets the authorization strategy.
27: *
28: * @return Returns the authorizationStrategy.
29: */
30: String getAuthorizationStrategy();
31:
32: /**
33: * @return crypt factory used to generate crypt objects
34: */
35: String getCryptFactory();
36:
37: /**
38: * @return The listener
39: * @see IUnauthorizedComponentInstantiationListener
40: */
41: String getUnauthorizedComponentInstantiationListener();
42: }
|