Tabnine Logo
ConfigurationPersisterFactory.createTransientDomainXmlConfigurationPersister
Code IndexAdd Tabnine to your IDE (free)

How to use
createTransientDomainXmlConfigurationPersister
method
in
org.jboss.as.host.controller.ConfigurationPersisterFactory

Best Java code snippets using org.jboss.as.host.controller.ConfigurationPersisterFactory.createTransientDomainXmlConfigurationPersister (Showing top 3 results out of 315)

origin: wildfly/wildfly-core

  domainPersister = ConfigurationPersisterFactory.createRemoteBackupDomainXmlConfigurationPersister(configDir, executorService, extensionRegistry);
} else {
  domainPersister = ConfigurationPersisterFactory.createTransientDomainXmlConfigurationPersister(executorService, extensionRegistry);
origin: org.wildfly.core/wildfly-host-controller

  domainPersister = ConfigurationPersisterFactory.createRemoteBackupDomainXmlConfigurationPersister(configDir, executorService, extensionRegistry);
} else {
  domainPersister = ConfigurationPersisterFactory.createTransientDomainXmlConfigurationPersister(executorService, extensionRegistry);
origin: org.jboss.as/jboss-as-host-controller

public void initializeDomainConfigurationPersister(boolean slave) {
  if (domainPersister != null) {
    throw MESSAGES.configurationPersisterAlreadyInitialized();
  }
  final File configDir = environment.getDomainConfigurationDir();
  if (slave) {
    if (environment.isBackupDomainFiles()) {
      // --backup
      domainPersister = ConfigurationPersisterFactory.createRemoteBackupDomainXmlConfigurationPersister(configDir, executorService, extensionRegistry);
    } else if(environment.isUseCachedDc()) {
      // --cached-dc
      domainPersister = ConfigurationPersisterFactory.createCachedRemoteDomainXmlConfigurationPersister(configDir, executorService, extensionRegistry);
    } else {
      domainPersister = ConfigurationPersisterFactory.createTransientDomainXmlConfigurationPersister(executorService, extensionRegistry);
    }
  } else {
    final ConfigurationFile configurationFile = environment.getDomainConfigurationFile();
    if (environment.getRunningModeControl().isReloaded()) {
      configurationFile.resetBootFile(environment.getRunningModeControl().isUseCurrentDomainConfig());
    }
    domainPersister = ConfigurationPersisterFactory.createDomainXmlConfigurationPersister(configurationFile, executorService, extensionRegistry);
  }
  this.slave = slave;
}
org.jboss.as.host.controllerConfigurationPersisterFactorycreateTransientDomainXmlConfigurationPersister

Popular methods of ConfigurationPersisterFactory

  • createDomainXmlConfigurationPersister
  • createHostXmlConfigurationPersister
  • createRemoteBackupDomainXmlConfigurationPersister
  • createCachedRemoteDomainXmlConfigurationPersister

Popular in Java

  • Making http requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setContentView (Activity)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Table (org.hibernate.mapping)
    A relational table
  • Top plugins for WebStorm
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