Show
Ignore:
Timestamp:
04/19/10 02:42:34 (2 years ago)
Author:
Ted Faber <faber@…>
Children:
f54e8e4d6578e9ede95ce556d6419a49701bd322
Parents:
eeab22eb59fe5eb18788a6295820adedb52d8469
git-committer:
Ted Faber <faber@isi.edu> / 2010-04-19T09:42:34Z+0000
Message:

move userType into the deprecated section

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wsdl/fedd_types.xsd

    reeab22e reda00e1  
    106106    </xsd:restriction> 
    107107  </xsd:simpleType> 
     108 
     109  <xsd:complexType name="userType"> 
     110    <xsd:annotation> 
     111      <xsd:documentation> 
     112        The definition of a user principal.  It includes the 
     113        identification of the user as an ID type, the access credential(s) 
     114        that the user will use, and the role of the user, if any. 
     115        Multiple access keys may be used, and it is also possible for 
     116        the user to be anonymous.  Though it is possible to specify a 
     117        user without ID, access, or role, it is difficult to imagine 
     118        such a user being useful. 
     119      </xsd:documentation> 
     120    </xsd:annotation> 
     121    <xsd:sequence> 
     122      <xsd:element name="userID" type="tns:IDType" minOccurs="0" 
     123        maxOccurs="1"/> 
     124      <xsd:element name="access" type="tns:accessType" minOccurs="0" 
     125        maxOccurs="unbounded"/> 
     126      <!-- begin deprecated --> 
     127      <xsd:element name="role" type="tns:userRole" minOccurs="0" maxOccurs="1"/> 
     128      <!-- end deprecated --> 
     129    </xsd:sequence> 
     130  </xsd:complexType> 
    108131 
    109132  <!-- end deprecated --> 
     
    140163      <xsd:element name="passwordHash" type="xsd:string"/> 
    141164    </xsd:choice> 
    142   </xsd:complexType> 
    143  
    144   <xsd:complexType name="userType"> 
    145     <xsd:annotation> 
    146       <xsd:documentation> 
    147         The definition of a user principal.  It includes the 
    148         identification of the user as an ID type, the access credential(s) 
    149         that the user will use, and the role of the user, if any. 
    150         Multiple access keys may be used, and it is also possible for 
    151         the user to be anonymous.  Though it is possible to specify a 
    152         user without ID, access, or role, it is difficult to imagine 
    153         such a user being useful. 
    154       </xsd:documentation> 
    155     </xsd:annotation> 
    156     <xsd:sequence> 
    157       <xsd:element name="userID" type="tns:IDType" minOccurs="0" 
    158         maxOccurs="1"/> 
    159       <xsd:element name="access" type="tns:accessType" minOccurs="0" 
    160         maxOccurs="unbounded"/> 
    161       <!-- begin deprecated --> 
    162       <xsd:element name="role" type="tns:userRole" minOccurs="0" maxOccurs="1"/> 
    163       <!-- end deprecated --> 
    164     </xsd:sequence> 
    165165  </xsd:complexType> 
    166166