Skip to content

Commit 308e2bf

Browse files
committed
Se respeta el camel case dentro de la variable.
1 parent 1a37f8e commit 308e2bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/mx/com/sw/services/account/info/AccountInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ public AccountInfoActionResponse createUser(String email, String password, Strin
133133
config, AccountInfoActionResponse.class);
134134
}
135135

136-
public AccountInfoActionResponse getDeleteIdUser(String IdUser) throws ServicesException {
136+
public AccountInfoActionResponse getDeleteIdUser(String idUser) throws ServicesException {
137137
Map<String, String> headers = getHeaders();
138138
RequestConfig config = GeneralHelpers.setProxyAndTimeOut(getProxy(), getProxyPort());
139-
String path = "management/api/users/" + IdUser;
139+
String path = "management/api/users/" + idUser;
140140
return handlerActions.deleteHTTP(getUrlapi() == null ? getUrl() : getUrlapi(), path, headers, config, AccountInfoActionResponse.class);
141141
}
142142

src/main/java/mx/com/sw/services/account/info/AccountInfoService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected AccountInfoService(String urlApi, String token, String proxy, int prox
8686
* @return Respuesta de la solicitud de información de la cuenta.
8787
* @throws ServicesException exception en caso de error.
8888
*/
89-
public abstract AccountInfoActionResponse getDeleteIdUser(String IdUser) throws ServicesException;
89+
public abstract AccountInfoActionResponse getDeleteIdUser(String idUser) throws ServicesException;
9090

9191
/**
9292
* Obtiene los headers necesarios para el consumo del servicio.

0 commit comments

Comments
 (0)