From 66c942587960008707199d310760d688391533d6 Mon Sep 17 00:00:00 2001 From: Chris Wiechmann Date: Mon, 15 Jun 2020 23:38:50 +0200 Subject: [PATCH] [skip ci] More docu changes --- .../com/axway/apim/adapter/apis/APIManagerAPIAdapter.java | 3 ++- .../java/com/axway/apim/api/state/APIChangeState.java | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/apim-adapter/src/main/java/com/axway/apim/adapter/apis/APIManagerAPIAdapter.java b/modules/apim-adapter/src/main/java/com/axway/apim/adapter/apis/APIManagerAPIAdapter.java index 0c8332fa8..a26963066 100644 --- a/modules/apim-adapter/src/main/java/com/axway/apim/adapter/apis/APIManagerAPIAdapter.java +++ b/modules/apim-adapter/src/main/java/com/axway/apim/adapter/apis/APIManagerAPIAdapter.java @@ -241,7 +241,8 @@ public void translateMethodIds(API api, String apiId, METHOD_TRANSLATI * Translates the methodIds of the given api. The operations are loaded from the API-Manager based on the api.getId() * @param api in which the methods should be translated * @param mode translation direction - * @throws AppException if methods cannot be translated + * @param the type of the profile + * @throws AppException if methods cannot be translated */ public void translateMethodIds(API api, METHOD_TRANSLATION mode) throws AppException { if(mode == METHOD_TRANSLATION.NONE) return; diff --git a/modules/apim-adapter/src/main/java/com/axway/apim/api/state/APIChangeState.java b/modules/apim-adapter/src/main/java/com/axway/apim/api/state/APIChangeState.java index ff705ef55..69225f0ab 100644 --- a/modules/apim-adapter/src/main/java/com/axway/apim/api/state/APIChangeState.java +++ b/modules/apim-adapter/src/main/java/com/axway/apim/api/state/APIChangeState.java @@ -130,10 +130,10 @@ public static void copyChangedProps(API desiredAPI, API createdAPI, List /** * Copied all changed properties of the API having APIPropertyAnnotation set to copyProp = true (default) - * @sourceAPI copy the properties from this source API - * @targetAPI copy the properties into this target API - * @propsToCopy the list of API properties to copy - * @logMessage controls if a log message is created which properties are copied + * @param sourceAPI copy the properties from this source API + * @param targetAPI copy the properties into this target API + * @param propsToCopy the list of API properties to copy + * @param logMessage controls if a log message is created which properties are copied * @throws AppException if something goes wrong */ public static void copyProps(API sourceAPI, API targetAPI, List propsToCopy, boolean logMessage) throws AppException {