Skip to content

Commit

Permalink
[skip ci] Added missing documentation required to release
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wiechmann committed Jun 15, 2020
1 parent 95a51d7 commit f7e19a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,7 @@ public <profile> 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 <profile> An Outbound- or InboundProfile
* @param apis in which the methods should be translated
* @param api in which the methods should be translated
* @param mode translation direction
* @throws AppException if methods cannot be translated
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ protected ClientAppAdapter() {

/**
* Returns a list of application according to the provided filter
* @param filter object to filter the results
* @return applications according to the provided filter
* @throws AppException when something goes wrong
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@ public void setState(String state) {
* the API-Manager internally doesn't. In API-Manager deprecation is just a true/false toggle.
* To make Desired and Actual API comparable this method is encapsulating the difference.
* @see com.axway.apim.api.API#getState()
* @return the state of the API (unpublished, deprecated, etc.)
* @throws AppException in case of an error
*/
public String getState() throws AppException {
if(this.deprecated!=null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ public static void copyChangedProps(API desiredAPI, API createdAPI, List<String>

/**
* 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
* @throws AppException if something goes wrong
*/
public static void copyProps(API sourceAPI, API targetAPI, List<String> propsToCopy, boolean logMessage) throws AppException {
Expand Down

0 comments on commit f7e19a6

Please sign in to comment.