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

How to use
getIfMatch
method
in
com.oracle.bmc.identity.requests.DeleteCompartmentRequest

Best Java code snippets using com.oracle.bmc.identity.requests.DeleteCompartmentRequest.getIfMatch (Showing top 2 results out of 315)

origin: oracle/oci-java-sdk

public static com.oracle.bmc.http.internal.WrappedInvocationBuilder fromRequest(
    com.oracle.bmc.http.internal.RestClient client, DeleteCompartmentRequest request) {
  Validate.notNull(request, "request instance is required");
  Validate.notBlank(request.getCompartmentId(), "compartmentId must not be blank");
  com.oracle.bmc.http.internal.WrappedWebTarget target =
      client.getBaseTarget()
          .path("/20160918")
          .path("compartments")
          .path(
              com.oracle.bmc.util.internal.HttpUtils.encodePathSegment(
                  request.getCompartmentId()));
  com.oracle.bmc.http.internal.WrappedInvocationBuilder ib = target.request();
  ib.accept(javax.ws.rs.core.MediaType.APPLICATION_JSON);
  if (request.getIfMatch() != null) {
    ib.header("if-match", request.getIfMatch());
  }
  return ib;
}
origin: oracle/oci-java-sdk

/**
 * Copy method to populate the builder with values from the given instance.
 * @return this builder instance
 */
public Builder copy(DeleteCompartmentRequest o) {
  compartmentId(o.getCompartmentId());
  ifMatch(o.getIfMatch());
  invocationCallback(o.getInvocationCallback());
  return this;
}
com.oracle.bmc.identity.requestsDeleteCompartmentRequestgetIfMatch

Popular methods of DeleteCompartmentRequest

  • builder
  • getCompartmentId
  • getInvocationCallback
  • setInvocationCallback

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • findViewById (Activity)
  • putExtra (Intent)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Top Sublime Text 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