]> 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
Revert change breaking path retro-compatibility.
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / doc / ConsoleContextDescriber.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
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 package org.argeo.slc.core.execution.doc;
17
18 import org.springframework.beans.MutablePropertyValues;
19 import org.springframework.beans.PropertyValue;
20 import org.springframework.beans.factory.config.BeanDefinition;
21 import org.springframework.beans.factory.support.BeanDefinitionRegistry;
22
23 public class ConsoleContextDescriber implements ContextDescriber {
24 public void describeContext(BeanDefinitionRegistry registry) {
25 String[] beanNames = registry.getBeanDefinitionNames();
26 for (String beanName : beanNames) {
27 log("\n## BEAN: " + beanName);
28 describeBean(registry.getBeanDefinition(beanName));
29 }
30 }
31
32 public void describeBean(BeanDefinition beanDefinition) {
33 log("BeanDefinition class: "+beanDefinition.getClass());
34 log("# ATTRIBUTES");
35 for(String attr:beanDefinition.attributeNames()){
36 log(attr+"="+beanDefinition.getAttribute(attr));
37 }
38 log("# PROPERTIES");
39 MutablePropertyValues pValues = beanDefinition.getPropertyValues();
40 for (PropertyValue pv : pValues.getPropertyValues()) {
41 log(pv.getName() + "= (" + pv.getValue().getClass() + ") "
42 + pv.getValue());
43 }
44 }
45
46 protected void log(Object obj){
47 System.out.println(obj);
48 }
49 }