Google Apps Security and Compliance Services Web Services Manual de usuario Pagina 68

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 70
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 67
66 Message Security and Compliance Application Programming Interface Guide RELEASE EA version 1.5
Responses
Response is a DeleteUsersResponse which holds a list of UserDeleteStatus
records, one for each address specified as input. This is an unlimited list.
UserDeleteStatus struct elements are:
Address -- User address specified for deletion. This is required.
Type: string
Status -- A DeleteStatus value representing the status of the requested
delete. This is required.
Type: DeleteStatus. For more information about the DeleteStatus
enumerated status, see “Enumerated Types for AddStatus, ModifyStatus,
and DeleteStatus” on page 45.
Message -- The User Sync API may return human readable messages to
help when debugging your application. These messages do not happen in
every case and, since they are subject to change, your application should
not be dependent upon or use these strings.
Exceptions
API Infrastructure Exceptions -- See “Exceptions” on page 44, and for exception
handling recommendations, see “Exception Management” on page 20.
JAX WS 2.0 Example
JAX-WS 2.0 Example
// AuthElem
AuthElem authElem = new AuthElem();
authElem.setApiKey("*your api key here*");
authElem.setEmail("*your admin user email here*");
authElem.setPword("*your admin password here");
List<String> deleteUsers = new ArrayList<String>();
deleteUsers.add("test1@example.com");
deleteUsers.add("test2@example.com");
deleteUsers.add("test3@example.com");
List<UserDeleteStatus> apiStatus =
syncPort.deleteUsers(authElem,deleteUsers);
Vista de pagina 67
1 2 ... 63 64 65 66 67 68 69 70

Comentarios a estos manuales

Sin comentarios