1 /* 2 * Copyright 2004,2007 The Apache Software Foundation. 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.apache.ws.commons.schema; 18 19 /** 20 * Class for the identity constraints: key, keyref, and unique elements. 21 */ 22 23 public class XmlSchemaIdentityConstraint extends XmlSchemaAnnotated { 24 25 /** 26 * Creates new XmlSchemaIdentityConstraint 27 */ 28 public XmlSchemaIdentityConstraint() { 29 fields = new XmlSchemaObjectCollection(); 30 } 31 32 XmlSchemaObjectCollection fields; 33 34 public XmlSchemaObjectCollection getFields() { 35 return fields; 36 } 37 38 String name; 39 40 public String getName() { 41 return name; 42 } 43 44 public void setName(String name) { 45 this.name = name; 46 } 47 48 XmlSchemaXPath selector; 49 50 public XmlSchemaXPath getSelector() { 51 return selector; 52 } 53 54 public void setSelector(XmlSchemaXPath selector) { 55 this.selector = selector; 56 } 57 58 59 }