public static enum SimpleService.Type extends Enum<SimpleService.Type>
Enum Constant and Description |
---|
DIRECT
Pass the inbound messages unaltered to the component.
|
JAX_RS
Expose a JAX-RS annoted component as a web service.
|
JAX_WS
Expose a JAX-WS annoted component as a web service.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
configureComponentMessageProcessor(MuleContext muleContext,
MessageProcessorChainBuilder builder,
Component component) |
static SimpleService.Type |
fromString(String string) |
abstract void |
validate(Component component) |
static SimpleService.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleService.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleService.Type JAX_WS
public static final SimpleService.Type JAX_RS
public static final SimpleService.Type DIRECT
public static SimpleService.Type[] values()
for (SimpleService.Type c : SimpleService.Type.values()) System.out.println(c);
public static SimpleService.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract void validate(Component component) throws FlowConstructInvalidException
FlowConstructInvalidException
public abstract void configureComponentMessageProcessor(MuleContext muleContext, MessageProcessorChainBuilder builder, Component component)
public static SimpleService.Type fromString(String string)
Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.