Skip to content

Commit f7e19a6

Browse files
author
Chris Wiechmann
committed
[skip ci] Added missing documentation required to release
1 parent 95a51d7 commit f7e19a6

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

modules/apim-adapter/src/main/java/com/axway/apim/adapter/apis/APIManagerAPIAdapter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,7 @@ public <profile> void translateMethodIds(API api, String apiId, METHOD_TRANSLATI
239239

240240
/**
241241
* Translates the methodIds of the given api. The operations are loaded from the API-Manager based on the api.getId()
242-
* @param <profile> An Outbound- or InboundProfile
243-
* @param apis in which the methods should be translated
242+
* @param api in which the methods should be translated
244243
* @param mode translation direction
245244
* @throws AppException if methods cannot be translated
246245
*/

modules/apim-adapter/src/main/java/com/axway/apim/adapter/clientApps/ClientAppAdapter.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ protected ClientAppAdapter() {
2020

2121
/**
2222
* Returns a list of application according to the provided filter
23-
* @param filter object to filter the results
2423
* @return applications according to the provided filter
2524
* @throws AppException when something goes wrong
2625
*/

modules/apim-adapter/src/main/java/com/axway/apim/api/API.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,8 @@ public void setState(String state) {
238238
* the API-Manager internally doesn't. In API-Manager deprecation is just a true/false toggle.
239239
* To make Desired and Actual API comparable this method is encapsulating the difference.
240240
* @see com.axway.apim.api.API#getState()
241+
* @return the state of the API (unpublished, deprecated, etc.)
242+
* @throws AppException in case of an error
241243
*/
242244
public String getState() throws AppException {
243245
if(this.deprecated!=null

modules/apim-adapter/src/main/java/com/axway/apim/api/state/APIChangeState.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ public static void copyChangedProps(API desiredAPI, API createdAPI, List<String>
130130

131131
/**
132132
* Copied all changed properties of the API having APIPropertyAnnotation set to copyProp = true (default)
133+
* @sourceAPI copy the properties from this source API
134+
* @targetAPI copy the properties into this target API
135+
* @propsToCopy the list of API properties to copy
136+
* @logMessage controls if a log message is created which properties are copied
133137
* @throws AppException if something goes wrong
134138
*/
135139
public static void copyProps(API sourceAPI, API targetAPI, List<String> propsToCopy, boolean logMessage) throws AppException {

0 commit comments

Comments
 (0)