View Javadoc
1   /*
2    * Copyright 2009 the original author or authors.
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.openehealth.ipf.commons.ihe.xds.core.validate;
17  
18  import org.openehealth.ipf.commons.ihe.xds.core.ebxml.EbXMLRegistryObject;
19  
20  import java.util.List;
21  
22  /**
23   * Validation for slots.
24   */
25  public class SlotValidation implements RegistryObjectValidator {
26      private final String slotName;
27      private final ValueListValidator validator;
28  
29      /**
30       * Constructs the validation.
31       * @param slotName
32       *          the name of the slot.
33       * @param validator
34       *          the validator to call for the slot. 
35       */
36      public SlotValidation(String slotName, ValueListValidator validator) {
37          this.slotName = slotName;
38          this.validator = validator;
39      }
40  
41      @Override
42      public void validate(EbXMLRegistryObject obj) throws XDSMetaDataException {
43          List<String> slotValues = obj.getSlotValues(slotName);
44          validator.validate(slotValues);
45      }
46  }