Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<wadl:param href="#secure-urls"/>
</wadl:request>
<wadl:response>
<wadl:representation mediaType="application/xml" element="tns:comments"/>
<wadl:representation href="#update-comments"/>
</wadl:response>
</wadl:method>
</wadl:resource>
Expand Down Expand Up @@ -193,11 +193,9 @@
<wadl:request>
<wadl:param href="#group-id"/>
<wadl:param href="#fields-selector"/>
<wadl:param href="#count"/>
<wadl:param href="#start"/>
</wadl:request>
<wadl:response>
<wadl:representation href="#groupmemberships"/>
<wadl:representation href="#groupmembership"/>
</wadl:response>
</wadl:method>
</wadl:resource>
Expand Down Expand Up @@ -633,7 +631,7 @@
<wadl:param href="#secure-urls"/>
</wadl:request>
<wadl:response>
<wadl:representation mediaType="application/xml" element="tns:comments"/>
<wadl:representation href="#update-comments"/>
</wadl:response>
</wadl:method>
</wadl:resource>
Expand Down Expand Up @@ -913,7 +911,7 @@
<wadl:param name="secure-urls" style="query" type="xsd:boolean" id="secure-urls"/>

<!-- public profile url param -->
<wadl:param name="public-profile-url" style="template" type="xsd:anyURI" id="public-profile-url"/>
<wadl:param name="public-profile-url" style="template" id="public-profile-url"/>

<!-- group Id param -->
<wadl:param name="group-id" style="template" type="xsd:integer" required="true" id="group-id"/>
Expand Down Expand Up @@ -1037,9 +1035,10 @@
<wadl:representation mediaType="application/xml" element="tns:isfollowing" id="is-following"/>

<wadl:representation mediaType="application/xml" element="tns:updatecomment" id="update-comment"/>
<wadl:representation mediaType="application/xml" element="tns:updatecomments" id="update-comments"/>

<wadl:representation mediaType="application/xml" element="tns:jobbookmark" id="job-bookmark"/>
<wadl:representation mediaType="application/xml" element="tns:jobbookmarks" id="job-bookmarks"/>
<wadl:representation mediaType="application/xml" element="tns:jobsearch" id="job-search"/>

</wadl:application>
</wadl:application>
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public void testGetCompanyUpdateComments() throws Exception {
// parameter type is Boolean
headers.put("CamelLinkedIn.secure_urls", null);

final org.apache.camel.component.linkedin.api.model.Comments result = requestBodyAndHeaders("direct://GETCOMPANYUPDATECOMMENTS", null, headers);
final org.apache.camel.component.linkedin.api.model.UpdateComments result = requestBodyAndHeaders("direct://GETCOMPANYUPDATECOMMENTS", null, headers);

assertNotNull("getCompanyUpdateComments result", result);
LOG.debug("getCompanyUpdateComments: " + result);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void testGetGroupMembershipSettings() throws Exception {
// parameter type is Long
headers.put("CamelLinkedIn.start", null);

final org.apache.camel.component.linkedin.api.model.GroupMemberships result = requestBodyAndHeaders("direct://GETGROUPMEMBERSHIPSETTINGS", null, headers);
final org.apache.camel.component.linkedin.api.model.GroupMembership result = requestBodyAndHeaders("direct://GETGROUPMEMBERSHIPSETTINGS", null, headers);

assertNotNull("getGroupMembershipSettings result", result);
LOG.debug("getGroupMembershipSettings: " + result);
Expand Down Expand Up @@ -419,7 +419,7 @@ public void testGetUpdateComments() throws Exception {
// parameter type is Boolean
headers.put("CamelLinkedIn.secure_urls", null);

final org.apache.camel.component.linkedin.api.model.Comments result = requestBodyAndHeaders("direct://GETUPDATECOMMENTS", null, headers);
final org.apache.camel.component.linkedin.api.model.UpdateComments result = requestBodyAndHeaders("direct://GETUPDATECOMMENTS", null, headers);

assertNotNull("getUpdateComments result", result);
LOG.debug("getUpdateComments: " + result);
Expand Down