Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Fix JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi committed Jul 25, 2019
1 parent 0912a6c commit 5d84179
Showing 1 changed file with 18 additions and 9 deletions.
Expand Up @@ -26,6 +26,7 @@
* Immutable.
*/

@SuppressWarnings("WeakerAccess")
public class OslcQuery {

private final OslcClient oslcClient;
Expand Down Expand Up @@ -79,20 +80,28 @@ public OslcQuery(OslcClient oslcClient, String capabilityUrl, int pageSize) {
this(oslcClient, capabilityUrl, pageSize, null);
}

/**
* Create an OSLC query that uses OSLC query parameters and the given page size
*
* @param oslcClient the authenticated OSLC client
* @param capabilityUrl the URL that is the base
* @param pageSize the number of results to include on each page (OslcQueryResult)
* @param oslcQueryParams an OslcQueryParameters object (see {@link OslcQueryParameters})
*/
public OslcQuery(OslcClient oslcClient, String capabilityUrl,
int pageSize, OslcQueryParameters oslcQueryParams) {
this(oslcClient, capabilityUrl, pageSize, oslcQueryParams, OSLCConstants.OSLC2_0);
}

/**
* Create an OSLC query that uses OSLC query parameters and the given page size
*
* @param oslcClient the authenticated OSLC client
* @param capabilityUrl the URL that is the base
* @param pageSize the number of results to include on each page (OslcQueryResult)
* @param oslcQueryParams an OslcQueryParameters object (see {@link OslcQueryParameters})
* @param version OSLC Version (see {@link OSLCConstants})
*/
/**
* Create an OSLC query that uses OSLC query parameters and the given page size
*
* @param oslcClient the authenticated OSLC client
* @param capabilityUrl the URL that is the base
* @param pageSize the number of results to include on each page (OslcQueryResult)
* @param oslcQueryParams an OslcQueryParameters object (see {@link OslcQueryParameters})
* @param version OSLC Version (see {@link OSLCConstants})
*/
public OslcQuery(OslcClient oslcClient, String capabilityUrl,
int pageSize, OslcQueryParameters oslcQueryParams, String version) {
this.oslcClient = oslcClient;
Expand Down

0 comments on commit 5d84179

Please sign in to comment.