initial camel integration (early-access, see also http://doc.akkasource.org/Camel)
This commit is contained in:
parent
1093451dd7
commit
bb202d476e
19 changed files with 684 additions and 7 deletions
|
|
@ -0,0 +1,18 @@
|
|||
/**
|
||||
* Copyright (C) 2009-2010 Scalable Solutions AB <http://scalablesolutions.se>
|
||||
*/
|
||||
|
||||
package se.scalablesolutions.akka.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface consume {
|
||||
|
||||
public abstract String value();
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue