Tabnine Logo
VersionInput.isReleased
Code IndexAdd Tabnine to your IDE (free)

How to use
isReleased
method
in
com.atlassian.jira.rest.client.api.domain.input.VersionInput

Best Java code snippets using com.atlassian.jira.rest.client.api.domain.input.VersionInput.isReleased (Showing top 2 results out of 315)

origin: com.atlassian.jira/jira-rest-java-client-core

  @Override
  public JSONObject generate(VersionInput version) throws JSONException {
    final JSONObject jsonObject = new JSONObject();
    jsonObject.put("name", version.getName());
    jsonObject.put("project", version.getProjectKey());
    if (version.getDescription() != null) {
      jsonObject.put("description", version.getDescription());
    }
    if (version.getReleaseDate() != null) {
      jsonObject.put("releaseDate", JsonParseUtil.formatDate(version.getReleaseDate()));
    }
    jsonObject.put("released", version.isReleased());
    jsonObject.put("archived", version.isArchived());
    return jsonObject;
  }
}
origin: org.openengsb.wrapped/jira-rest-java-client-core

  @Override
  public JSONObject generate(VersionInput version) throws JSONException {
    final JSONObject jsonObject = new JSONObject();
    jsonObject.put("name", version.getName());
    jsonObject.put("project", version.getProjectKey());
    if (version.getDescription() != null) {
      jsonObject.put("description", version.getDescription());
    }
    if (version.getReleaseDate() != null) {
      jsonObject.put("releaseDate", JsonParseUtil.formatDate(version.getReleaseDate()));
    }
    jsonObject.put("released", version.isReleased());
    jsonObject.put("archived", version.isArchived());
    return jsonObject;
  }
}
com.atlassian.jira.rest.client.api.domain.inputVersionInputisReleased

Popular methods of VersionInput

  • <init>
  • getDescription
  • getName
  • getProjectKey
  • getReleaseDate
  • isArchived

Popular in Java

  • Updating database using SQL prepared statement
  • getContentResolver (Context)
  • startActivity (Activity)
  • getResourceAsStream (ClassLoader)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • JComboBox (javax.swing)
  • Top plugins for Android Studio
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