You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by jm...@apache.org on 2007/01/04 15:31:36 UTC

svn commit: r492581 - /incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java

Author: jmarino
Date: Thu Jan  4 06:31:35 2007
New Revision: 492581

URL: http://svn.apache.org/viewvc?view=rev&rev=492581
Log:
add new SCA eager init annotation

Added:
    incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java   (with props)

Added: incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java?view=auto&rev=492581
==============================================================================
--- incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java (added)
+++ incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java Thu Jan  4 06:31:35 2007
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.osoa.sca.annotations;
+
+import static java.lang.annotation.ElementType.TYPE;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * Annotation used to indicate an instance should be eagerly initialized.
+ *
+ * @version $Rev$ $Date$
+ */
+@Target({TYPE})
+@Retention(RetentionPolicy.RUNTIME)
+public @interface EagerInit {
+
+}

Propchange: incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/spec/sca/src/main/java/org/osoa/sca/annotations/EagerInit.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org


updated SCA spec annotation, r492581

Posted by Jim Marino <jm...@myromatours.com>.
I've added a new SCA annotation for eager initialization, @EagerInit,  
so please update and build the SCA spec project. This annotation will  
be used to decorate a class instead of specifying @Init(eager =  
true), which will avoid having to define an initializer method in  
order eagerly instantiating a component instance. We have also  
decided in the spec group to restrict eager initialization to  
composite-scoped components. I will be changing over the kernel to  
support these new semantics shortly.


Jim



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org