diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-02-21 19:35:40 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-02-21 19:35:40 +0000 |
commit | 99f810244bf4d4eb18f6c3830b5026ad35f205ea (patch) | |
tree | 562e8264ee391d3355e7423ca306b9a41e55aa72 /java | |
parent | bb563adc2a67be583f3ca9c3186f6dbc7750c62a (diff) |
Remove the unused interface
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@746571 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r-- | java/sca/modules/policy/src/main/java/org/apache/tuscany/sca/policy/PolicyResolver.java | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/java/sca/modules/policy/src/main/java/org/apache/tuscany/sca/policy/PolicyResolver.java b/java/sca/modules/policy/src/main/java/org/apache/tuscany/sca/policy/PolicyResolver.java deleted file mode 100644 index b04641bdf5..0000000000 --- a/java/sca/modules/policy/src/main/java/org/apache/tuscany/sca/policy/PolicyResolver.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * 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.sca.policy; - -import java.util.List; - -/** - * - */ -public interface PolicyResolver { - /** - * Attach a policySet to a given policy subject - * @param policySet - * @param policySubject - * @return - */ - PolicyAttachment attach(PolicySet policySet, PolicySubject policySubject); - - /** - * Apply the policySet against the SCA domain composite to - * @param policySet - * @param domainComposite - * @return - */ - List<PolicyAttachment> apply(PolicySet policySet, PolicySubject domainComposite); - - /** - * Calculate a list of effective policies for a given policy subject - * @param policySubject - * @return - */ - List<PolicyExpression> getEffectivePolicies(PolicySubject policySubject); - - boolean isIntentProvidedBy(PolicySet policySet, Intent intent); - List<PolicyExpression> getPolicies(Intent intent); -} |