public class

CreateCollectionMessageProcessor

extends AbstractConnectedProcessor
implements MessageProcessor
java.lang.Object
   ↳ org.mule.devkit.processor.ExpressionEvaluatorSupport
     ↳ org.mule.devkit.processor.DevkitBasedMessageProcessor
       ↳ org.mule.module.mongo.processors.AbstractConnectedProcessor
         ↳ org.mule.module.mongo.processors.CreateCollectionMessageProcessor

Class Overview

CreateCollectionMessageProcessor invokes the createCollection(java.lang.String, boolean, java.lang.Integer, java.lang.Integer) method in MongoCloudConnector. For each argument there is a field in this processor to match it. Before invoking the actual method the processor will evaluate and transform where possible to the expected argument type.

Summary

[Expand]
Inherited Constants
From interface org.mule.api.lifecycle.Disposable
From interface org.mule.api.lifecycle.Initialisable
From interface org.mule.api.lifecycle.Startable
From interface org.mule.api.lifecycle.Stoppable
Fields
protected boolean _cappedType
protected String _collectionType
protected Integer _maxObjectsType
protected Integer _sizeType
protected Object capped
protected Object collection
protected Object maxObjects
protected Object size
[Expand]
Inherited Fields
From class org.mule.module.mongo.processors.AbstractConnectedProcessor
From class org.mule.devkit.processor.DevkitBasedMessageProcessor
Public Constructors
CreateCollectionMessageProcessor(String operationName)
Public Methods
void dispose()
MuleEvent doProcess(MuleEvent event)
Invokes the MessageProcessor.
void initialise()
Obtains the expression manager from the Mule context and initialises the connector.
void setCapped(Object value)
Sets capped
void setCollection(Object value)
Sets collection
void setMaxObjects(Object value)
Sets maxObjects
void setSize(Object value)
Sets size
void start()
void stop()
[Expand]
Inherited Methods
From class org.mule.module.mongo.processors.AbstractConnectedProcessor
From class org.mule.devkit.processor.DevkitBasedMessageProcessor
From class org.mule.devkit.processor.ExpressionEvaluatorSupport
From class java.lang.Object
From interface org.mule.api.construct.FlowConstructAware
From interface org.mule.api.context.MuleContextAware
From interface org.mule.api.lifecycle.Disposable
From interface org.mule.api.lifecycle.Initialisable
From interface org.mule.api.lifecycle.Startable
From interface org.mule.api.lifecycle.Stoppable
From interface org.mule.api.processor.MessageProcessor
From interface org.mule.module.mongo.processors.ConnectivityProcessor

Fields

protected boolean _cappedType

protected String _collectionType

protected Integer _maxObjectsType

protected Integer _sizeType

protected Object capped

protected Object collection

protected Object maxObjects

protected Object size

Public Constructors

public CreateCollectionMessageProcessor (String operationName)

Parameters
operationName

Public Methods

public void dispose ()

public MuleEvent doProcess (MuleEvent event)

Invokes the MessageProcessor.

Parameters
event MuleEvent to be processed
Throws
Exception

public void initialise ()

Obtains the expression manager from the Mule context and initialises the connector. If a target object has not been set already it will search the Mule registry for a default one.

Throws
InitialisationException

public void setCapped (Object value)

Sets capped

Parameters
value Value to set

public void setCollection (Object value)

Sets collection

Parameters
value Value to set

public void setMaxObjects (Object value)

Sets maxObjects

Parameters
value Value to set

public void setSize (Object value)

Sets size

Parameters
value Value to set

public void start ()

Throws
MuleException

public void stop ()

Throws
MuleException