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

How to use
OracleAccountValidator
in
com.netflix.spinnaker.halyard.config.validate.v1.providers.oracle

Best Java code snippets using com.netflix.spinnaker.halyard.config.validate.v1.providers.oracle.OracleAccountValidator (Showing top 4 results out of 315)

origin: spinnaker/halyard

  @Override
  public void validate(ConfigProblemSetBuilder p, OracleProvider n) {
    OracleAccountValidator oracleAccountValidator = new OracleAccountValidator();

    n.getAccounts().forEach(oracleAccount -> oracleAccountValidator.validate(p, oracleAccount));

    // TODO validate bakery
    //new OracleBakeryDefaultsValidator().validate(p, n.getBakeryDefaults());
  }
}
origin: com.netflix.spinnaker.halyard/halyard-config

@Override
public void validate(ConfigProblemSetBuilder psBuilder, OracleAccount account) {
 notNullOrEmpty(account.getCompartmentId(), "compartment id", psBuilder);
 notNullOrEmpty(account.getUserId(), "user id", psBuilder);
 notNullOrEmpty(account.getFingerprint(), "fingerprint", psBuilder);
 notNullOrEmpty(account.getSshPrivateKeyFilePath(), "ssh private key file path", psBuilder);
 notNullOrEmpty(account.getTenancyId(), "tenancy id", psBuilder);
 notNullOrEmpty(account.getRegion(), "region", psBuilder);
 // TODO (simonlord): Once BMCS SDK is in maven we can access via spinnaker.dependency("clouddriverOracleBmcs") and test account login
}
origin: spinnaker/halyard

@Override
public void validate(ConfigProblemSetBuilder psBuilder, OracleAccount account) {
 notNullOrEmpty(account.getCompartmentId(), "compartment id", psBuilder);
 notNullOrEmpty(account.getUserId(), "user id", psBuilder);
 notNullOrEmpty(account.getFingerprint(), "fingerprint", psBuilder);
 notNullOrEmpty(account.getSshPrivateKeyFilePath(), "ssh private key file path", psBuilder);
 notNullOrEmpty(account.getTenancyId(), "tenancy id", psBuilder);
 notNullOrEmpty(account.getRegion(), "region", psBuilder);
 // TODO (simonlord): Once BMCS SDK is in maven we can access via spinnaker.dependency("clouddriverOracleBmcs") and test account login
}
origin: com.netflix.spinnaker.halyard/halyard-config

  @Override
  public void validate(ConfigProblemSetBuilder p, OracleProvider n) {
    OracleAccountValidator oracleAccountValidator = new OracleAccountValidator();

    n.getAccounts().forEach(oracleAccount -> oracleAccountValidator.validate(p, oracleAccount));

    // TODO validate bakery
    //new OracleBakeryDefaultsValidator().validate(p, n.getBakeryDefaults());
  }
}
com.netflix.spinnaker.halyard.config.validate.v1.providers.oracleOracleAccountValidator

Most used methods

  • <init>
  • notNullOrEmpty
  • validate

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • onRequestPermissionsResult (Fragment)
  • getSystemService (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Best plugins for Eclipse
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