Skip to content
Snippets Groups Projects

feat(SolidifyRestClientService): add getter for AbstractRestClientTool

Merged Nicolas.Rod requested to merge rodn-rest-client-service-getter into master
All threads resolved!
1 file
+ 8
3
Compare changes
  • Side-by-side
  • Inline
@@ -9,12 +9,12 @@
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the
* License, or (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-2.0.html>.
@@ -160,6 +160,7 @@ public abstract class SolidifyRestClientService {
return subResourceList;
}
// ********************
// ** HEAD Functions **
// ********************
@@ -335,10 +336,14 @@ public abstract class SolidifyRestClientService {
return restClt;
}
public AbstractRestClientTool getRestClientTool() {
return this.restClientTool;
}
/**
* Complete an URL with pagination query parameters
*
* @param url url to complete
* @param url url to complete
* @param pageable pageable object used to complete the URL
* @return completed URL
*/
Loading