You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2007/03/13 16:45:47 UTC

svn commit: r517737 - in /incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org: ./ apache/ apache/tuscany/ apache/tuscany/policy/ apache/tuscany/policy/model/

Author: jsdelfino
Date: Tue Mar 13 08:45:47 2007
New Revision: 517737

URL: http://svn.apache.org/viewvc?view=rev&rev=517737
Log:
Moving the few policy interfaces to a different module

Added:
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java   (with props)
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java   (with props)
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java   (with props)
    incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.java   (with props)

Added: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java?view=auto&rev=517737
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java (added)
+++ incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java Tue Mar 13 08:45:47 2007
@@ -0,0 +1,28 @@
+/*
+ * 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.apache.tuscany.policy.model;
+
+
+
+/**
+ * Represents a policy intent.  See the Policy Framework specification for a description of this attribute.
+ */
+public interface Intent {
+    
+}

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/Intent.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java?view=auto&rev=517737
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java (added)
+++ incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java Tue Mar 13 08:45:47 2007
@@ -0,0 +1,34 @@
+/*
+ * 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.apache.tuscany.policy.model;
+
+import java.util.List;
+
+/**
+ * Base interface for all assembly model objects that can be have policy intents attached to them.
+ */
+public interface IntentAttachPoint {
+
+	/**
+	 * Returns a list of policy intents.  See the Policy Framework specification for a description of this attribute. 
+	 * @return a list of policy intents.
+	 */
+	List<?> getRequiredIntents();
+
+}

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/IntentAttachPoint.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java?view=auto&rev=517737
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java (added)
+++ incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java Tue Mar 13 08:45:47 2007
@@ -0,0 +1,28 @@
+/*
+ * 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.apache.tuscany.policy.model;
+
+
+
+/**
+ * Represents a policy set.  See the Policy Framework specification for a description of this attribute.
+ */
+public interface PolicySet {
+    
+}

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySet.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.java?view=auto&rev=517737
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.java (added)
+++ incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.java Tue Mar 13 08:45:47 2007
@@ -0,0 +1,34 @@
+/*
+ * 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.apache.tuscany.policy.model;
+
+import java.util.List;
+
+/**
+ * Base interface for all assembly model objects that can have policy sets attached to them.
+ */
+public interface PolicySetAttachPoint {
+
+	/**
+	 * Returns a list of policy sets. See the Policy Framework specification for a description of this attribute.
+	 * @return a list of policy sets.
+	 */
+	List<?> getPolicySets();
+
+}

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/sca/policy/src/main/java/org/apache/tuscany/policy/model/PolicySetAttachPoint.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