-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/LACNIC/pai-auth-ws-client
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
# PAI Authentication Web Service Client | ||
|
||
**PAI Authentication Web Service Client** es un cliente Java para consumir el servicio web de autenticación de PAI. Este cliente permite realizar autenticaciones y gestionar accesos a través de la API de autenticación de PAI. | ||
|
||
## Características | ||
|
||
- Conexión sencilla al servicio web de autenticación de PAI. | ||
- Métodos para realizar autenticaciones y gestionar sesiones. | ||
- Configurable y fácil de integrar en aplicaciones Java. | ||
|
||
## Requisitos | ||
|
||
- Java 8 o superior. | ||
- Maven para gestionar las dependencias. | ||
|
||
## Instalación | ||
[![](https://jitpack.io/v/LACNIC/pai-auth-ws-client.svg)](https://jitpack.io/#LACNIC/pai-auth-ws-client) | ||
|
||
Puedes agregar esta biblioteca a tu proyecto utilizando [JitPack](https://jitpack.io/). Asegúrate de que tienes JitPack configurado como repositorio en tu proyecto Maven. | ||
|
||
### Paso 1: Agregar el repositorio de JitPack | ||
Agrega el siguiente repositorio en el archivo `pom.xml` de tu proyecto: | ||
|
||
```xml | ||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
</repositories> | ||
Luego, agrega la dependencia del cliente PAI: | ||
<dependency> | ||
<groupId>com.github.LACNIC</groupId> | ||
<artifactId>pai-auth-ws-client</artifactId> | ||
<version>1.0.0</version> <!-- Reemplaza con la versión publicada en JitPack --> | ||
</dependency> | ||
``` | ||
|
||
### Luego, agrega la dependencia del cliente PAI: | ||
|
||
``` xml | ||
<dependency> | ||
<groupId>com.github.LACNIC</groupId> | ||
<artifactId>pai-auth-ws-client</artifactId> | ||
<version>1.0.0</version> <!-- Reemplaza con la versión publicada en JitPack --> | ||
</dependency> | ||
``` |