public void onError(final Throwable throwable) {
Status status = Status.fromThrowable(throwable);
cdsStatus.compareAndSet(null, CdsActorConstants.ERROR);
- LOGGER.error("Failed processing blueprint {} {}", status, throwable);
+ LOGGER.error("Failed processing blueprint {}", status, throwable);
}
/**
urlGet = url + PNF_URL;
pnfName = URLEncoder.encode(pnfName, StandardCharsets.UTF_8.toString()) + AAI_DEPTH_SUFFIX;
} catch (UnsupportedEncodingException e) {
- logger.error("Failed to encode the pnfName: {} using UTF-8 encoding. {}", pnfName, e);
+ logger.error("Failed to encode the pnfName: {} using UTF-8", pnfName, e);
return null;
}
String responseGet = getStringQuery(urlGet, username, password, requestId, pnfName);
/*-
* ============LICENSE_START=======================================================
* Copyright (C) 2019 Nordix Foundation.
- * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
}
/**
- * The main method.
+ * The main method. Arguments are validated in the constructor thus adding the NOSONAR.
*
* @param args the arguments
*
*/
- public static void main(final String[] args) {
+ public static void main(final String[] args) { // NOSONAR
new PdpSimulatorMain(args);
}
}
}
/**
- * The main method.
+ * The main method. The arguments are validated, thus adding the NOSONAR.
*
* @param args the arguments, the first of which is the name of the parameter file
*/
- public static void main(final String[] args) {
+ public static void main(final String[] args) { // NOSONAR
try {
if (args.length != 1) {
throw new IllegalArgumentException("arg(s): parameter-file-name");