Codota Logo
ContentDeliveryConfigBuilder.addResourceConfiguration
Code IndexAdd Codota to your IDE (free)

How to use
addResourceConfiguration
method
in
org.milyn.delivery.ContentDeliveryConfigBuilder

Best Java code snippets using org.milyn.delivery.ContentDeliveryConfigBuilder.addResourceConfiguration (Showing top 8 results out of 315)

  • Common ways to obtain ContentDeliveryConfigBuilder
private void myMethod () {
ContentDeliveryConfigBuilder c =
  • Codota IconProfileSet profileSet;ApplicationContext applicationContext;new ContentDeliveryConfigBuilder(profileSet, applicationContext)
  • Smart code suggestions by Codota
}
origin: smooks/smooks

/**
 * Build the basic SmooksResourceConfiguration table from the list.
 * @param resourceConfigsList List of SmooksResourceConfigurations.
 */
private void buildSmooksResourceConfigurationTable(List resourceConfigsList) {
for (final Object resourceConfig : resourceConfigsList)
{
 addResourceConfiguration((SmooksResourceConfiguration) resourceConfig);
}
}
origin: org.milyn/milyn-smooks-core

/**
 * Build the basic SmooksResourceConfiguration table from the list.
 * @param resourceConfigsList List of SmooksResourceConfigurations.
 */
private void buildSmooksResourceConfigurationTable(List resourceConfigsList) {
for (final Object resourceConfig : resourceConfigsList)
{
 addResourceConfiguration((SmooksResourceConfiguration) resourceConfig);
}
}
origin: org.milyn/milyn-smooks-all

/**
 * Build the basic SmooksResourceConfiguration table from the list.
 * @param resourceConfigsList List of SmooksResourceConfigurations.
 */
private void buildSmooksResourceConfigurationTable(List resourceConfigsList) {
for (final Object resourceConfig : resourceConfigsList)
{
 addResourceConfiguration((SmooksResourceConfiguration) resourceConfig);
}
}
origin: org.virtuslab/milyn-smooks-core

/**
 * Build the basic SmooksResourceConfiguration table from the list.
 * @param resourceConfigsList List of SmooksResourceConfigurations.
 */
private void buildSmooksResourceConfigurationTable(List resourceConfigsList) {
  Iterator iterator = resourceConfigsList.iterator();
  
  while(iterator.hasNext()) {
    SmooksResourceConfiguration config = (SmooksResourceConfiguration)iterator.next();
    addResourceConfiguration(config);
  }
}
origin: org.milyn/milyn-smooks-all

/**
 * Add the supplied resource configuration to this configuration's main
 * resource configuration list.
 * @param config The configuration to be added.
 */
private void addResourceConfiguration(SmooksResourceConfiguration config) {
  String target = config.getSelector();
  // If it's contextual, it's targeting an XML element...
  if(config.isSelectorContextual()) {
    target = config.getTargetElement();
  }
  addResourceConfiguration(target, config);
}
origin: smooks/smooks

/**
 * Add the supplied resource configuration to this configuration's main
 * resource configuration list.
 * @param config The configuration to be added.
 */
private void addResourceConfiguration(SmooksResourceConfiguration config) {
  String target = config.getSelector();
  // If it's contextual, it's targeting an XML element...
  if(config.isSelectorContextual()) {
    target = config.getTargetElement();
  }
  addResourceConfiguration(target, config);
}
origin: org.milyn/milyn-smooks-core

/**
 * Add the supplied resource configuration to this configuration's main
 * resource configuration list.
 * @param config The configuration to be added.
 */
private void addResourceConfiguration(SmooksResourceConfiguration config) {
  String target = config.getSelector();
  // If it's contextual, it's targeting an XML element...
  if(config.isSelectorContextual()) {
    target = config.getTargetElement();
  }
  addResourceConfiguration(target, config);
}
origin: org.virtuslab/milyn-smooks-core

/**
 * Add the supplied resource configuration to this configuration's main
 * resource configuration list.
 * @param config The configuration to be added.
 */
private void addResourceConfiguration(SmooksResourceConfiguration config) {
  String target = config.getSelector();
  // If it's contextual, it's targeting an XML element...
  if(config.isSelectorContextual()) {
    target = config.getTargetElement();
  }
  addResourceConfiguration(target, config);
}
org.milyn.deliveryContentDeliveryConfigBuilderaddResourceConfiguration

Javadoc

Add the config for the specified element.

Popular methods of ContentDeliveryConfigBuilder

  • <init>
    Private (hidden) constructor.
  • buildSmooksResourceConfigurationTable
    Build the basic SmooksResourceConfiguration table from the list.
  • createConfig
  • expandSmooksResourceConfigurationTable
    Expand the SmooksResourceConfiguration table. Expand the XmlDef entries to the target elements etc.
  • extractContentHandlers
    Extract the ContentHandler instances from the SmooksResourceConfiguration table and add them to thei
  • fireEvent
  • getConfig
    Get the ContentDeliveryConfig instance for the specified profile set.
  • getDeliveryConfigTable
  • getResourceFilterCharacteristics
    Logging support function.
  • getStreamFilterType
  • load
    Build the ContentDeliveryConfigBuilder for the specified device. Creates the buildTable instance and
  • logResourceConfig
    Print a debug log of the resource configurations for the associated profile.
  • load,
  • logResourceConfig,
  • printHandlerCharacteristics,
  • sortSmooksResourceConfigurations

Popular in Java

  • Reactive rest calls using spring rest template
  • requestLocationUpdates (LocationManager)
  • orElseThrow (Optional)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • TreeSet (java.util)
    A NavigableSet implementation based on a TreeMap. The elements are ordered using their Comparable, o
  • Reference (javax.naming)
  • JCheckBox (javax.swing)
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