These are the items that have been worked on since Tuscany SCA Java was last released. If we record things that have been done as we check things into SVN there there are two big advantages.

  1. Its a lot easier to write the release notes
  2. People can take a look to see what is likely to be in the next release

The next release is targeted for mid May 2007. The theme is stability and consumability for the runtime core functions. Since the M2 release we have added.

General

Assembly(Model)

Implementation Extensions

Binding Extensions

Databinding Extensions

Hosting

Domain and Contribution

Samples

Java Annotations and APIs Spec Coverage

Annotations

@AllowsPassByReference
Interface
Class
Method
@Callback
Interface
Class
Method
Field
@ComponentName
Method
Field
@Conversation
Interface
Class
@Constructor
Constructor
@Context
Field
Setter
@Conversational
Interface
Class
@Destroy
Method
@EagerInit
Interface
Class
@EndsConversation
Method
@Init
Method
@OneWay
Method
@Property
Field
Method
@Reference
Field
Setter
Constructor
@Remotable
Interface
Class
@Scope
Interface
Class
STATELESS
REQUEST
CONVERSATION
COMPOSITE
@Service
Interface
Class
@ConversationAttributes
Interface
Class
@ConversationID
Field
Setter

API

CallableReference<B>
B getService();
Class<B> getBusinessInterface();
boolean isConversational();
Conversation getConversation();
Object getCallbackID();

ComponentContext
String getURI();
<B> B getService(Class<B> businessInterface, String referenceName);
<B> ServiceReference<B> getServiceReference(Class<B> businessInterface, String referenceName);
<B> ServiceReference<B> createSelfReference(Class<B> businessInterface);
<B> ServiceReference<B> createSelfReference(Class<B> businessInterface,String serviceName);
<B> B getProperty(Class<B> type, String propertyName);
<B, R extends CallableReference<B>> R cast(B target) throws IllegalArgumentException;
RequestContext getRequestContext();
<B> ServiceReference<B> cast(B target) throws IllegalArgumentException;

Conversation
Object getConversionID();
void end();

ConversationEndedException

NoRegsiteredCallbackException

RequestContext
Subject getSecuritySubject();
String getServiceName();
CallbackReference<CB> getCallbackReference();
CB getCallback();
<B> CallableReference<B> getServiceReference();

ServiceReference<B>
Object getConversationID();
void setConversationID(Object conversationId) throws IllegalStateException;
void setCallbackID(Object callbackID);
Object getCallback();
void setCallback(Object callback);

ServiceRuntimeException

ServiceUnavailableException