- Timestamp:
- 11/12/08 14:15:25 (5 years ago)
- Location:
- site/api/schemas
- Files:
-
- 8 modified
-
admin.zip (modified) (previous)
-
client.zip (modified) (previous)
-
nsp/admin/Admin-1.0.wsdl (modified) (2 diffs)
-
nsp/admin/Admin-Service-1.0.wsdl (modified) (1 diff)
-
nsp/admin/User-1.0.xsd (modified) (5 diffs)
-
nsp/client/Domain-1.0.xsd (modified) (1 diff)
-
so/member/UserManagement-1.0.xsd (modified) (1 diff)
-
so.zip (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
site/api/schemas/nsp/admin/Admin-1.0.wsdl
r102 r115 87 87 </message> 88 88 89 <message name="CreateUserAndPasswordRequestMessage"> 90 <part name="request" element="user:createUserAndPasswordRequest"/> 91 </message> 92 93 <message name="CreateUserAndPasswordResponseMessage"> 94 <part name="response" element="user:createUserAndPasswordResponse"/> 95 </message> 96 89 97 <message name="DeleteUserRequestMessage"> 90 98 <part name="request" element="user:deleteUserRequest"/> … … 363 371 </operation> 364 372 373 <operation name="createUserAndPassword"> 374 <input message="tns:CreateUserAndPasswordRequestMessage"/> 375 <output message="tns:CreateUserAndPasswordResponseMessage"/> 376 <fault name="parametersFault" message="tns:FaultParametersMessage"/> 377 </operation> 378 365 379 <operation name="deleteUser"> 366 380 <input message="tns:DeleteUserRequestMessage"/> -
site/api/schemas/nsp/admin/Admin-Service-1.0.wsdl
r102 r115 73 73 </fault> 74 74 </operation> 75 75 76 <operation name="createUserAndPassword"> 77 <soap:operation 78 soapAction="http://ws.telnic.org/nsp/admin/user/createUserAndPassword"/> 79 <input> 80 <soap:body use="literal"/> 81 </input> 82 <output> 83 <soap:body use="literal"/> 84 </output> 85 <fault name="parametersFault"> 86 <soap:fault name="parametersFault" use="literal"/> 87 </fault> 88 </operation> 89 76 90 <operation name="deleteUser"> 77 91 <soap:operation -
site/api/schemas/nsp/admin/User-1.0.xsd
r102 r115 77 77 </complexType> 78 78 79 79 80 <complexType name="createUserRequestType"> 80 81 <annotation> … … 109 110 <element name="password" type="token" minOccurs="0"> 110 111 <annotation> 111 <documentation>The initial password for the user. If the external authentication is used, it can be set, but is ignored.</documentation>112 </annotation> 113 </element> 114 <element name="emailAddress" type="token" minOccurs="0">112 <documentation>The initial password for the user. If the external authentication is used, it may not be set, otherwise it is required.</documentation> 113 </annotation> 114 </element> 115 <element name="emailAddress" type="token"> 115 116 <annotation> 116 117 <documentation>The user's e-mail address.</documentation> … … 124 125 </sequence> 125 126 </complexType> 126 127 127 128 <complexType name="createUserResponseType"> 128 129 <annotation> … … 130 131 </annotation> 131 132 </complexType> 132 133 134 135 <complexType name="createUserAndPasswordRequestType"> 136 <annotation> 137 <documentation>This type describes the content of the create user and password request.</documentation> 138 </annotation> 139 <sequence> 140 <element name="userName" type="common:userType"> 141 <annotation> 142 <documentation>The user name of the to-be-created user.</documentation> 143 </annotation> 144 </element> 145 <element name="partition" type="token" minOccurs="0"> 146 <annotation> 147 <documentation>The partition to which the user shall belong.</documentation> 148 </annotation> 149 </element> 150 <element name="type" type="types:userTypeType"> 151 <annotation> 152 <documentation>The type of the user.</documentation> 153 </annotation> 154 </element> 155 <element name="permissions" type="token"> 156 <annotation> 157 <documentation>The name of the permission set assigned to the user.</documentation> 158 </annotation> 159 </element> 160 <element name="emailAddress" type="token"> 161 <annotation> 162 <documentation>The user's e-mail address.</documentation> 163 </annotation> 164 </element> 165 <element name="primaryUserName" type="common:userType" minOccurs="0"> 166 <annotation> 167 <documentation>This element must be present if and only if a secondary user is created. It specifies the primary user the secondary user shall be associated with.</documentation> 168 </annotation> 169 </element> 170 </sequence> 171 </complexType> 172 173 <complexType name="createUserAndPasswordResponseType"> 174 <annotation> 175 <documentation>This type describes the content of the create user and password response.</documentation> 176 </annotation> 177 <sequence> 178 <element name="password" type="token"> 179 <annotation> 180 <documentation>The generated initial password of the user.</documentation> 181 </annotation> 182 </element> 183 </sequence> 184 </complexType> 185 133 186 134 187 <complexType name="deleteUserRequestType"> … … 416 469 417 470 471 472 <element name="createUserAndPasswordRequest" 473 type="types:createUserAndPasswordRequestType"> 474 <annotation> 475 <documentation>A create user and password request.</documentation> 476 </annotation> 477 </element> 478 479 <element name="createUserAndPasswordResponse" 480 type="types:createUserAndPasswordResponseType"> 481 <annotation> 482 <documentation>A create user and password response.</documentation> 483 </annotation> 484 </element> 485 486 418 487 419 488 <element name="deleteUserRequest" -
site/api/schemas/nsp/client/Domain-1.0.xsd
r102 r115 242 242 <element name="userName" type="common:userType" minOccurs="0"> 243 243 <annotation> 244 <documentation>The ID of the user the domain shall be assigned to . If the element is omitted, the domain is not delegated.</documentation>244 <documentation>The ID of the user the domain shall be assigned to (must be the ID of a secondary user). If the element is omitted, the domain is not delegated.</documentation> 245 245 </annotation> 246 246 </element> -
site/api/schemas/so/member/UserManagement-1.0.xsd
r102 r115 122 122 </annotation> 123 123 </element> 124 <element name="soId" type="token"> 125 <annotation> 126 <documentation>The inquired user's so serial number.</documentation> 127 </annotation> 128 </element> 124 129 </sequence> 125 130 </complexType>








