KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > springframework > jmx > export > naming > PropertiesNamingStrategyTests


1 /*
2  * Copyright 2002-2005 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */

16
17 package org.springframework.jmx.export.naming;
18
19 import java.util.Properties JavaDoc;
20
21 /**
22  * @author Rob Harrop
23  * @author Juergen Hoeller
24  */

25 public class PropertiesNamingStrategyTests extends AbstractNamingStrategyTests {
26
27     private static final String JavaDoc OBJECT_NAME = "bean:name=namingTest";
28
29     protected ObjectNamingStrategy getStrategy() throws Exception JavaDoc {
30         KeyNamingStrategy strat = new KeyNamingStrategy();
31         Properties JavaDoc mappings = new Properties JavaDoc();
32         mappings.setProperty("namingTest", "bean:name=namingTest");
33         strat.setMappings(mappings);
34         strat.afterPropertiesSet();
35         return strat;
36     }
37
38     protected Object JavaDoc getManagedResource() {
39         return new Object JavaDoc();
40     }
41
42     protected String JavaDoc getKey() {
43         return "namingTest";
44     }
45
46     protected String JavaDoc getCorrectObjectName() {
47         return OBJECT_NAME;
48     }
49
50 }
51
Popular Tags