]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/doc/ConsoleContextDescriber.java
Add license headers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / doc / ConsoleContextDescriber.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of 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,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.core.execution.doc;
18
19 import org.springframework.beans.MutablePropertyValues;
20 import org.springframework.beans.PropertyValue;
21 import org.springframework.beans.factory.config.BeanDefinition;
22 import org.springframework.beans.factory.support.BeanDefinitionRegistry;
23
24 public class ConsoleContextDescriber implements ContextDescriber {
25 public void describeContext(BeanDefinitionRegistry registry) {
26 String[] beanNames = registry.getBeanDefinitionNames();
27 for (String beanName : beanNames) {
28 log("\n## BEAN: " + beanName);
29 describeBean(registry.getBeanDefinition(beanName));
30 }
31 }
32
33 public void describeBean(BeanDefinition beanDefinition) {
34 log("BeanDefinition class: "+beanDefinition.getClass());
35 log("# ATTRIBUTES");
36 for(String attr:beanDefinition.attributeNames()){
37 log(attr+"="+beanDefinition.getAttribute(attr));
38 }
39 log("# PROPERTIES");
40 MutablePropertyValues pValues = beanDefinition.getPropertyValues();
41 for (PropertyValue pv : pValues.getPropertyValues()) {
42 log(pv.getName() + "= (" + pv.getValue().getClass() + ") "
43 + pv.getValue());
44 }
45 }
46
47 protected void log(Object obj){
48 System.out.println(obj);
49 }
50 }