Tabnine Logo
DeleteUserRequest
Code IndexAdd Tabnine to your IDE (free)

How to use
DeleteUserRequest
in
com.oracle.bmc.identity.requests

Best Java code snippets using com.oracle.bmc.identity.requests.DeleteUserRequest (Showing top 5 results out of 315)

origin: oracle/oci-java-sdk

/**
 * Copy method to populate the builder with values from the given instance.
 * @return this builder instance
 */
public Builder copy(DeleteUserRequest o) {
  userId(o.getUserId());
  ifMatch(o.getIfMatch());
  invocationCallback(o.getInvocationCallback());
  return this;
}
origin: oracle/oci-java-sdk

  /**
   * Build the instance of DeleteUserRequest as configured by this builder
   *
   * Note that this method takes calls to {@link Builder#invocationCallback(com.oracle.bmc.util.internal.Consumer)} into account,
   * while the method {@link Builder#buildWithoutInvocationCallback} does not.
   *
   * This is the preferred method to build an instance.
   *
   * @return instance of DeleteUserRequest
   */
  public DeleteUserRequest build() {
    DeleteUserRequest request = buildWithoutInvocationCallback();
    request.setInvocationCallback(invocationCallback);
    return request;
  }
}
origin: oracle/oci-java-sdk

public static com.oracle.bmc.http.internal.WrappedInvocationBuilder fromRequest(
    com.oracle.bmc.http.internal.RestClient client, DeleteUserRequest request) {
  Validate.notNull(request, "request instance is required");
  Validate.notBlank(request.getUserId(), "userId must not be blank");
  com.oracle.bmc.http.internal.WrappedWebTarget target =
      client.getBaseTarget()
          .path("/20160918")
          .path("users")
          .path(
              com.oracle.bmc.util.internal.HttpUtils.encodePathSegment(
                  request.getUserId()));
  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

DeleteUserRequest.builder().userId(getUserResponse.getUser().getId()).build();
origin: oracle/oci-java-sdk

DeleteUserRequest.builder().userId(getUserResponse.getUser().getId()).build();
com.oracle.bmc.identity.requestsDeleteUserRequest

Most used methods

  • builder
  • getIfMatch
  • getInvocationCallback
  • getUserId
  • setInvocationCallback

Popular in Java

  • Finding current android device location
  • startActivity (Activity)
  • getSystemService (Context)
  • findViewById (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • From CI to AI: The AI layer in your organization
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