View Javadoc

1   /**
2    * Copyright 2005-2015 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.kim.api.jaxb;
17  
18  import org.kuali.rice.core.api.util.jaxb.MapStringStringAdapter;
19  
20  import javax.xml.bind.annotation.XmlAccessType;
21  import javax.xml.bind.annotation.XmlAccessorType;
22  import javax.xml.bind.annotation.XmlElement;
23  import javax.xml.bind.annotation.XmlType;
24  import java.io.Serializable;
25  import java.util.ArrayList;
26  import java.util.List;
27  import java.util.Map;
28  
29  /**
30   * An XML element that can have zero or more StringMapEntry elements. This is similar
31   * to the StringMapEntryList, except this element's children are <qualification> elements.
32   * 
33   * @author Kuali Rice Team (rice.collab@kuali.org)
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name="QualificationListType", propOrder={"qualifications"})
37  public class QualificationList implements Serializable {
38      
39      private static final long serialVersionUID = 1L;
40      
41      @XmlElement(name="qualification")
42      private List<MapStringStringAdapter.StringMapEntry> qualifications;
43      
44      public QualificationList () {
45          qualifications = new ArrayList<MapStringStringAdapter.StringMapEntry>();
46      }
47      
48      public QualificationList(Map<String, String> map) {
49          this();
50          for (Map.Entry<String,String> tempEntry : map.entrySet()) {
51              qualifications.add(new MapStringStringAdapter.StringMapEntry(tempEntry));
52          }
53      }
54  
55      /**
56       * @return the qualifications
57       */
58      public List<MapStringStringAdapter.StringMapEntry> getQualifications() {
59          return this.qualifications;
60      }
61  
62      /**
63       * @param qualifications the qualifications to set
64       */
65      public void setQualifications(List<MapStringStringAdapter.StringMapEntry> qualifications) {
66          this.qualifications = qualifications;
67      }
68  
69      
70  }