View Javadoc

1   /*
2    * Copyright 2008 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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.kuali.rice.core.util;
17  
18  import org.apache.commons.lang.StringUtils;
19  
20  import java.util.HashMap;
21  import java.util.Map;
22  
23  /**
24   * Specialization of HashMap to facilitate web services and simplify API definitions.
25   * 
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   *
28   */
29  public class AttributeSet extends HashMap<String,String> {
30  
31  	private static final long serialVersionUID = -5960854367616060667L;
32  
33  	public AttributeSet() {
34  		super();
35  	}
36  	
37  	/**
38  	 * Create an AttributeSet with a single key/value pair.
39  	 */
40  	public AttributeSet( String key, String value ) {
41  		this();
42  		put( key, value );
43  	}
44  	
45  	/**
46  	 * @see HashMap#HashMap(int)
47  	 * 
48  	 * @param initialSize
49  	 */
50  	public AttributeSet( int initialSize ) {
51  		super( initialSize );
52  	}
53  	
54  	public AttributeSet( Map<String,String> map ) {
55  		super();
56  		if ( map != null ) {
57  			putAll( map );
58  		}
59  	}
60  	
61  	public String formattedDump( int indent ) {
62  		int maxKeyLen = 1;
63  		for ( String key : this.keySet() ) {
64  			if ( key.length() > maxKeyLen ) {
65  				maxKeyLen = key.length();
66  			}
67  		}
68  		StringBuffer sb = new StringBuffer();
69  		String indentStr = StringUtils.repeat( " ", indent );
70  		for ( String key : this.keySet() ) {
71  			sb.append( indentStr );
72  			sb.append( StringUtils.rightPad( key, maxKeyLen, ' ' ));
73  			sb.append( " --> " );
74  			sb.append( get( key ) );
75  			sb.append( '\n' );
76  		}
77  		return sb.toString();
78  	}
79  }