moved EnableGemfireFunction* annotations to config package and enhanced ForkUtils to handle spaces in file paths

This commit is contained in:
David Turanski
2013-02-05 14:33:24 -05:00
parent 00c78e394e
commit 5907c1389f
8 changed files with 42 additions and 24 deletions

View File

@@ -27,7 +27,6 @@ import org.springframework.core.type.AnnotationMetadata;
import org.springframework.core.type.filter.AnnotationTypeFilter;
import org.springframework.core.type.filter.AssignableTypeFilter;
import org.springframework.core.type.filter.TypeFilter;
import org.springframework.data.gemfire.function.annotation.EnableGemfireFunctionExecutions;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;

View File

@@ -10,7 +10,7 @@
* 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.springframework.data.gemfire.function.annotation;
package org.springframework.data.gemfire.function.config;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
@@ -21,7 +21,6 @@ import java.lang.annotation.Target;
import org.springframework.context.annotation.ComponentScan.Filter;
import org.springframework.context.annotation.Import;
import org.springframework.data.gemfire.function.config.FunctionExecutionBeanDefinitionRegistrar;
/**
* Enables classpath scanning for interfaces annotated as GemFire function executions (function invocations).

View File

@@ -10,7 +10,7 @@
* 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.springframework.data.gemfire.function.annotation;
package org.springframework.data.gemfire.function.config;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
@@ -20,7 +20,6 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.context.annotation.Import;
import org.springframework.data.gemfire.function.config.GemfireFunctionPostBeanProcessorRegistrar;
/**
*