congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ChangeParentRequest
Code IndexAdd Tabnine to your IDE (free)

How to use
ChangeParentRequest
in
org.sonarqube.ws.client.qualityprofiles

Best Java code snippets using org.sonarqube.ws.client.qualityprofiles.ChangeParentRequest (Showing top 2 results out of 315)

origin: SonarSource/sonarqube

/**
 *
 * This is part of the internal API.
 * This is a POST request.
 * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/qualityprofiles/change_parent">Further information about this action online (including a response example)</a>
 * @since 5.2
 */
public void changeParent(ChangeParentRequest request) {
 call(
  new PostRequest(path("change_parent"))
   .setParam("key", request.getKey())
   .setParam("language", request.getLanguage())
   .setParam("organization", request.getOrganization())
   .setParam("parentKey", request.getParentKey())
   .setParam("parentQualityProfile", request.getParentQualityProfile())
   .setParam("qualityProfile", request.getQualityProfile())
   .setMediaType(MediaTypes.JSON)
  ).content();
}
origin: org.sonarsource.sonarqube/sonar-ws

/**
 *
 * This is part of the internal API.
 * This is a POST request.
 * @see <a href="https://next.sonarqube.com/sonarqube/web_api/api/qualityprofiles/change_parent">Further information about this action online (including a response example)</a>
 * @since 5.2
 */
public void changeParent(ChangeParentRequest request) {
 call(
  new PostRequest(path("change_parent"))
   .setParam("key", request.getKey())
   .setParam("language", request.getLanguage())
   .setParam("organization", request.getOrganization())
   .setParam("parentKey", request.getParentKey())
   .setParam("parentQualityProfile", request.getParentQualityProfile())
   .setParam("qualityProfile", request.getQualityProfile())
   .setMediaType(MediaTypes.JSON)
  ).content();
}
org.sonarqube.ws.client.qualityprofilesChangeParentRequest

Javadoc

This is part of the internal API. This is a POST request.

Most used methods

  • getKey
  • getLanguage
  • getOrganization
  • getParentKey
  • getParentQualityProfile
  • getQualityProfile

Popular in Java

  • Running tasks concurrently on multiple threads
  • getContentResolver (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • String (java.lang)
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now