congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
RestStoreConfigurationBuilder.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.infinispan.persistence.rest.configuration.RestStoreConfigurationBuilder
constructor

Best Java code snippets using org.infinispan.persistence.rest.configuration.RestStoreConfigurationBuilder.<init> (Showing top 2 results out of 315)

origin: org.infinispan/infinispan-tools

private void parseRestStore(final XMLExtendedStreamReader reader, PersistenceConfigurationBuilder loadersBuilder,
   ClassLoader classLoader) throws XMLStreamException {
 RestStoreConfigurationBuilder builder = new RestStoreConfigurationBuilder(loadersBuilder);
 parseRestStoreAttributes(reader, builder, classLoader);
 while (reader.hasNext() && (reader.nextTag() != XMLStreamConstants.END_ELEMENT)) {
   Element element = Element.forName(reader.getLocalName());
   switch (element) {
   case CONNECTION_POOL: {
    parseConnectionPool(reader, builder.connectionPool());
    break;
   }
   default: {
    Parser60.parseCommonStoreChildren(reader, builder);
    break;
   }
   }
 }
 loadersBuilder.addStore(builder);
}
origin: org.infinispan/infinispan-cachestore-rest

private void parseRestStore(final XMLExtendedStreamReader reader, PersistenceConfigurationBuilder loadersBuilder) throws XMLStreamException {
 RestStoreConfigurationBuilder builder = new RestStoreConfigurationBuilder(loadersBuilder);
 parseRestStoreAttributes(reader, builder);
 while (reader.hasNext() && (reader.nextTag() != XMLStreamConstants.END_ELEMENT)) {
   Element element = Element.forName(reader.getLocalName());
   switch (element) {
    case CONNECTION_POOL: {
      parseConnectionPool(reader, builder.connectionPool());
      break;
    }
    case SERVER: {
      parseServer(reader, builder);
      break;
    }
    default: {
      Parser.parseStoreElement(reader, builder);
      break;
    }
   }
 }
 loadersBuilder.addStore(builder);
}
org.infinispan.persistence.rest.configurationRestStoreConfigurationBuilder<init>

Popular methods of RestStoreConfigurationBuilder

  • connectionPool
  • host
  • path
  • port
  • appendCacheNameToPath
  • rawValues
  • key2StringMapper
  • maxContentLength
  • locking
  • metadataHelper
  • preload
  • validate
  • preload,
  • validate

Popular in Java

  • Finding current android device location
  • startActivity (Activity)
  • findViewById (Activity)
  • onRequestPermissionsResult (Fragment)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top Vim 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