Codota Logo
KmsVaultWaiters.forVault
Code IndexAdd Codota to your IDE (free)

How to use
forVault
method
in
com.oracle.bmc.keymanagement.KmsVaultWaiters

Best Java code snippets using com.oracle.bmc.keymanagement.KmsVaultWaiters.forVault (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: oracle/oci-java-sdk

/**
 * Creates a new {@link Waiter} using the provided configuration.
 *
 * @param request the request to send
 * @param targetState the desired state to wait for
 * @param terminationStrategy the {@link TerminationStrategy} to use
 * @param delayStrategy the {@link DelayStrategy} to use
 * @return a new {@code Waiter} instance
 */
public com.oracle.bmc.waiter.Waiter<GetVaultRequest, GetVaultResponse> forVault(
    GetVaultRequest request,
    com.oracle.bmc.keymanagement.model.Vault.LifecycleState targetState,
    com.oracle.bmc.waiter.TerminationStrategy terminationStrategy,
    com.oracle.bmc.waiter.DelayStrategy delayStrategy) {
  org.apache.commons.lang3.Validate.notNull(targetState, "The targetState cannot be null");
  return forVault(
      com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy),
      request,
      targetState);
}
origin: oracle/oci-java-sdk

/**
 * Creates a new {@link Waiter} using default configuration.
 *
 * @param request the request to send
 * @param targetStates the desired states to wait for. If multiple states are provided then the waiter will return once the resource reaches any of the provided states
 * @return a new {@code Waiter} instance
 */
public com.oracle.bmc.waiter.Waiter<GetVaultRequest, GetVaultResponse> forVault(
    GetVaultRequest request,
    com.oracle.bmc.keymanagement.model.Vault.LifecycleState... targetStates) {
  org.apache.commons.lang3.Validate.notEmpty(
      targetStates, "At least one targetState must be provided");
  org.apache.commons.lang3.Validate.noNullElements(
      targetStates, "Null targetState values are not permitted");
  return forVault(
      com.oracle.bmc.waiter.Waiters.DEFAULT_POLLING_WAITER, request, targetStates);
}
origin: oracle/oci-java-sdk

/**
 * Creates a new {@link Waiter} using the provided configuration.
 *
 * @param request the request to send
 * @param terminationStrategy the {@link TerminationStrategy} to use
 * @param delayStrategy the {@link DelayStrategy} to use
 * @param targetStates the desired states to wait for. The waiter will return once the resource reaches any of the provided states
 * @return a new {@code Waiter} instance
 */
public com.oracle.bmc.waiter.Waiter<GetVaultRequest, GetVaultResponse> forVault(
    GetVaultRequest request,
    com.oracle.bmc.waiter.TerminationStrategy terminationStrategy,
    com.oracle.bmc.waiter.DelayStrategy delayStrategy,
    com.oracle.bmc.keymanagement.model.Vault.LifecycleState... targetStates) {
  org.apache.commons.lang3.Validate.notEmpty(
      targetStates, "At least one target state must be provided");
  org.apache.commons.lang3.Validate.noNullElements(
      targetStates, "Null target states are not permitted");
  return forVault(
      com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy),
      request,
      targetStates);
}
com.oracle.bmc.keymanagementKmsVaultWaitersforVault

Javadoc

Creates a new Waiter using the provided configuration.

Popular methods of KmsVaultWaiters

  • <init>

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • List (java.util)
    A List is a collection which maintains an ordering for its elements. Every element in the List has a
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now