Package org.jboss.soa.esb.listeners.config.xbeanmodel120.FtpBusDocument

Examples of org.jboss.soa.esb.listeners.config.xbeanmodel120.FtpBusDocument.FtpBus


        int pollFrequency = scheduledListener.getPollFrequencySeconds();
        int pollLatency = getPollLatencySeconds(scheduledListener);

        if(scheduleIdRef != null) {
            listenerConfig.setAttribute(ListenerTagNames.SCHEDULE_ID_REF, scheduleIdRef);
            final Schedule schedule = model.getSchedule(scheduleIdRef) ;
            if (schedule.isSetStartDate()) {
                listenerConfig.setAttribute(ListenerTagNames.SCHEDULE_START_DATE, Long.toString(schedule.getStartDate().getTimeInMillis())) ;
            }
            if (schedule.isSetEndDate()) {
                listenerConfig.setAttribute(ListenerTagNames.SCHEDULE_END_DATE, Long.toString(schedule.getEndDate().getTimeInMillis())) ;
            }
            if (schedule instanceof SimpleSchedule) {
                final SimpleSchedule simpleSchedule = (SimpleSchedule)schedule ;
                final long simpleFrequency = simpleSchedule.getFrequency() ;
                final FrequencyUnit.Enum unit = simpleSchedule.getFrequencyUnits() ;
                final String frequencyVal ;
                if (unit.equals(FrequencyUnit.SECONDS)) {
                    frequencyVal = Long.toString(simpleFrequency * 1000) ;
                } else {
                    frequencyVal = Long.toString(simpleFrequency) ;
                }
                listenerConfig.setAttribute(ListenerTagNames.SCHEDULE_SIMPLE_FREQUENCY, frequencyVal) ;
                if (simpleSchedule.isSetExecCount()) {
                    listenerConfig.setAttribute(ListenerTagNames.SCHEDULE_SIMPLE_EXEC, Integer.toString(simpleSchedule.getExecCount())) ;
                }
            } else if (schedule instanceof CronSchedule) {
                final String cronExpression = ((CronSchedule)schedule).getCronExpression() ;
                if (cronExpression == null) {
                    throw new ConfigurationException("Missing cron expression from configuration") ;
                }
                listenerConfig.setAttribute(ListenerTagNames.SCHEDULE_CRON_EXPRESSION, cronExpression) ;
            } else {
                throw new ConfigurationException("Unknown schedule type specified in configuration: " + schedule.getClass().getName()) ;
            }

            if(domElement.hasAttribute("poll-frequency-seconds") || domElement.hasAttribute("schedule-frequency") ) {
                logger.warn("Schedule Listener '" + listenerConfig.getTagName() + "' defines both 'scheduleidref' and frequency attributes.  Using the 'scheduleidref'.");
            }
View Full Code Here


            listenerConfig.setAttribute(ScheduleProviderFactory.ATTR_FREQUENCY, Integer.toString(pollLatency));
        } else {
            listenerConfig.setAttribute(ScheduleProviderFactory.ATTR_FREQUENCY, "10");
        }

        final ScheduleProvider scheduleProvider = model.getScheduleProvider() ;
        if (scheduleProvider != null) {
            // There is only one schedule provider allowed in the configuration at present
            copyProperties(listenerConfig, model.getScheduleProvider().getPropertyList(), model.getScheduledListenerCount()) ;
        }
View Full Code Here

        List<Provider> providers = jbossesb.getProviders().getProviderList();

        for(Provider provider : providers) {
            if(provider instanceof ScheduleProvider) {
                final ScheduleProvider scheduleProvider = (ScheduleProvider)provider ;
                final List<Schedule> schedules = scheduleProvider.getScheduleList() ;
                for(Schedule schedule: schedules) {
                    if (id.equals(schedule.getScheduleid())) {
                        return schedule ;
                    }
                }
View Full Code Here

   *            The Service to which the listener is bound. The Service defines the actions.
   * @throws org.jboss.soa.esb.ConfigurationException
   */
  public static void map( final Element toConfigTree, final Service service ) throws ConfigurationException
  {
    final Security security = service.getSecurity();
    if ( security != null)
    {
        final Element securityElement = YADOMUtil.addElement( toConfigTree, ListenerTagNames.SECURITY_TAG );
      MapperUtil.serialize( security, securityElement );
    }
View Full Code Here

    root.setAttribute("parameterReloadSecs", model.getParameterReloadSecs());

        // Add an InVM listener for each service...
        List<Service> services = model.getServices();
        for (int i = 0; i < services.size(); i++) {
            Service service = services.get(i);
            if(model.exposesInVMListener(service)) {
                addInVMListener(root, service, i);
            }
        }
View Full Code Here

   * @param listener The ESB Aware Listener configuration to be added.
   * @throws org.jboss.soa.esb.ConfigurationException Invalid listener configuration.
   */
  private void addESBAwareConfig(Element root, Listener listener) throws ConfigurationException {
    Element listenerConfigTree;
    Service listenerService;

    // Of course we could do the following reflectively if we really want to - TODO perhaps!!
    if(listener instanceof JmsListener) {
      listenerConfigTree = JmsListenerMapper.map(root, (JmsListener)listener, model);
        } else if (listener instanceof ScheduledListener) {
View Full Code Here

* Mapper for the {@link org.jboss.soa.esb.listeners.ScheduleListener}.
* @author <a href="mailto:tom.fennelly@jboss.com">tom.fennelly@jboss.com</a>
*/
public class ScheduledListenerMapper {
    public static Element map(Element root, ScheduledListenerDocument.ScheduledListener listener, XMLBeansModel model) {
        Service service = model.getService(listener);
        boolean isGateway = listener.getIsGateway();
        Element listenerNode = YADOMUtil.addElement(root, "listener");

        listenerNode.setAttribute("name", listener.getName());

View Full Code Here

   * @param listener The listener configuration instance.
   * @param listenerNode The target DOM ConfigTree listener element.
   * @param model The model.
   */
    protected static void mapDefaultAttributes(Listener listener, Element listenerNode, XMLBeansModel model) {
        Service service = model.getService(listener);
        boolean isGateway = XMLBeansModel.isGateway(listener);

        if(listener instanceof DualListener) {
            listenerNode.setAttribute(ListenerTagNames.MAX_THREADS_TAG, String.valueOf(((DualListener)listener).getMaxThreads()));
        } else {
            listenerNode.setAttribute(ListenerTagNames.MAX_THREADS_TAG, "1");
        }

        mapListenerServiceAttributes(listenerNode, service, isGateway);
        if (!isGateway && !listenerNode.hasAttribute(ListenerTagNames.LISTENER_CLASS_TAG)) {
            listenerNode.setAttribute(ListenerTagNames.LISTENER_CLASS_TAG, MessageAwareListener.class.getName());
        }

        ActionsDocument.Actions actions = service.getActions();
        if(actions != null) {
            MepType.Enum mep = actions.getMep();
            if(mep != null) {
                // Intentionally not setting a default of RequestResponse because the action pipeline
                // has a "defaultProcessing" state that exists if the mep is not set (dubious??)....
View Full Code Here

    assertEquals("my-generic-bus", untypedAwareListener.getBusidref());
    assertTrue("Type is Dual Listener", untypedAwareListener instanceof DualListener);
    final DualListener dualListener = (DualListener)untypedAwareListener;
    assertTrue(!dualListener.getIsGateway());

    Service gatewayService = model.getService(gatewayListener);
    Service awareService = model.getService(awareListener);
    assertSame(gatewayService, awareService);
    assertEquals("Bank", awareService.getCategory());
    assertEquals("Reconciliation", awareService.getName());
    assertEquals("Bank Reconciliation Service", awareService.getDescription());
  }
View Full Code Here

    /**
     * Get the Service list.
     * @return Service list.
     */
    public List<Service> getServices() {
        final Services services = jbossesb.getServices();
        if (services != null) {
            return jbossesb.getServices().getServiceList();
        } else {
            return Collections.emptyList();
        }
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.listeners.config.xbeanmodel120.FtpBusDocument.FtpBus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.