Updated Branches: refs/heads/master 7be552917 -> 2c2f03be1
DELTASPIKE-399 API package was missing a 'c' Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/2c2f03be Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/2c2f03be Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/2c2f03be Branch: refs/heads/master Commit: 2c2f03be1beba381aac68e31a8e1ec4781a747b0 Parents: 7be5529 Author: John D. Ament <[email protected]> Authored: Fri Dec 27 08:42:08 2013 -0500 Committer: John D. Ament <[email protected]> Committed: Fri Dec 27 08:42:08 2013 -0500 ---------------------------------------------------------------------- .../api/literal/ExternalResourceLiteral.java | 4 +- .../api/resourceloader/ClasspathStorage.java | 26 ++++++++++++ .../api/resourceloader/ExternalResource.java | 44 ++++++++++++++++++++ .../resourceloader/ExternalResourceStorage.java | 26 ++++++++++++ .../api/resourceloader/FileSystemStorage.java | 26 ++++++++++++ .../api/resoureloader/ClasspathStorage.java | 26 ------------ .../api/resoureloader/ExternalResource.java | 44 -------------------- .../resoureloader/ExternalResourceStorage.java | 26 ------------ .../api/resoureloader/FileSystemStorage.java | 26 ------------ .../core/spi/literal/StorageTypeLiteral.java | 2 +- .../ExternalResourceProvider.java | 2 +- .../core/spi/resourceloader/StorageType.java | 2 +- .../resourceloader/BaseResourceProvider.java | 2 +- .../ClasspathResourceProvider.java | 4 +- .../ExternalResourceProducer.java | 4 +- .../resourceloader/FileResourceProvider.java | 4 +- .../resourceloader/ClasspathResourceTest.java | 4 +- .../impl/resourceloader/FileResourceTest.java | 2 +- 18 files changed, 137 insertions(+), 137 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/ExternalResourceLiteral.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/ExternalResourceLiteral.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/ExternalResourceLiteral.java index 7b1388e..ccb61c4 100644 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/ExternalResourceLiteral.java +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/literal/ExternalResourceLiteral.java @@ -18,8 +18,8 @@ */ package org.apache.deltaspike.core.api.literal; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; -import org.apache.deltaspike.core.api.resoureloader.ExternalResourceStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.ExternalResourceStorage; import javax.enterprise.util.AnnotationLiteral; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ClasspathStorage.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ClasspathStorage.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ClasspathStorage.java new file mode 100644 index 0000000..00e61df --- /dev/null +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ClasspathStorage.java @@ -0,0 +1,26 @@ +/* + * 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.deltaspike.core.api.resourceloader; + +/** + * Represents storage found on the classpath + */ +public interface ClasspathStorage extends ExternalResourceStorage +{ +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResource.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResource.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResource.java new file mode 100644 index 0000000..0943642 --- /dev/null +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResource.java @@ -0,0 +1,44 @@ +/* + * 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.deltaspike.core.api.resourceloader; + +import javax.enterprise.util.Nonbinding; +import javax.inject.Qualifier; +import java.lang.annotation.Documented; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +import static java.lang.annotation.ElementType.TYPE; +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.PARAMETER; +import static java.lang.annotation.ElementType.METHOD; + +@Target( { TYPE, METHOD, PARAMETER, FIELD }) +@Retention(value = RetentionPolicy.RUNTIME) +@Documented +@Qualifier +public @interface ExternalResource +{ + @Nonbinding + Class<? extends ExternalResourceStorage> storage(); + + @Nonbinding + String location() default ""; +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResourceStorage.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResourceStorage.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResourceStorage.java new file mode 100644 index 0000000..c9db85d --- /dev/null +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/ExternalResourceStorage.java @@ -0,0 +1,26 @@ +/* + * 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.deltaspike.core.api.resourceloader; + +/** + * A marker interface for types of external resource storage. + */ +public interface ExternalResourceStorage +{ +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/FileSystemStorage.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/FileSystemStorage.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/FileSystemStorage.java new file mode 100644 index 0000000..d3e23b0 --- /dev/null +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resourceloader/FileSystemStorage.java @@ -0,0 +1,26 @@ +/* + * 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.deltaspike.core.api.resourceloader; + +/** + * A File System marker for external resources. + */ +public interface FileSystemStorage extends ExternalResourceStorage +{ +} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ClasspathStorage.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ClasspathStorage.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ClasspathStorage.java deleted file mode 100644 index ef5fa2f..0000000 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ClasspathStorage.java +++ /dev/null @@ -1,26 +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.deltaspike.core.api.resoureloader; - -/** - * Represents storage found on the classpath - */ -public interface ClasspathStorage extends ExternalResourceStorage -{ -} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResource.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResource.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResource.java deleted file mode 100644 index ed8b525..0000000 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResource.java +++ /dev/null @@ -1,44 +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.deltaspike.core.api.resoureloader; - -import javax.enterprise.util.Nonbinding; -import javax.inject.Qualifier; -import java.lang.annotation.Documented; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -import static java.lang.annotation.ElementType.TYPE; -import static java.lang.annotation.ElementType.FIELD; -import static java.lang.annotation.ElementType.PARAMETER; -import static java.lang.annotation.ElementType.METHOD; - -@Target( { TYPE, METHOD, PARAMETER, FIELD }) -@Retention(value = RetentionPolicy.RUNTIME) -@Documented -@Qualifier -public @interface ExternalResource -{ - @Nonbinding - Class<? extends ExternalResourceStorage> storage(); - - @Nonbinding - String location() default ""; -} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResourceStorage.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResourceStorage.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResourceStorage.java deleted file mode 100644 index aa896f1..0000000 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/ExternalResourceStorage.java +++ /dev/null @@ -1,26 +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.deltaspike.core.api.resoureloader; - -/** - * A marker interface for types of external resource storage. - */ -public interface ExternalResourceStorage -{ -} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/FileSystemStorage.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/FileSystemStorage.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/FileSystemStorage.java deleted file mode 100644 index dac1ad2..0000000 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/api/resoureloader/FileSystemStorage.java +++ /dev/null @@ -1,26 +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.deltaspike.core.api.resoureloader; - -/** - * A File System marker for external resources. - */ -public interface FileSystemStorage extends ExternalResourceStorage -{ -} http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/literal/StorageTypeLiteral.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/literal/StorageTypeLiteral.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/literal/StorageTypeLiteral.java index 4504ac3..7a60970 100644 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/literal/StorageTypeLiteral.java +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/literal/StorageTypeLiteral.java @@ -18,7 +18,7 @@ */ package org.apache.deltaspike.core.spi.literal; -import org.apache.deltaspike.core.api.resoureloader.ExternalResourceStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResourceStorage; import org.apache.deltaspike.core.spi.resourceloader.StorageType; import javax.enterprise.util.AnnotationLiteral; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/ExternalResourceProvider.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/ExternalResourceProvider.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/ExternalResourceProvider.java index dcad2be..43dca6d 100644 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/ExternalResourceProvider.java +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/ExternalResourceProvider.java @@ -18,7 +18,7 @@ */ package org.apache.deltaspike.core.spi.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; import java.io.InputStream; import java.util.Properties; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/StorageType.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/StorageType.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/StorageType.java index 9403c60..a9da7f4 100644 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/StorageType.java +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/resourceloader/StorageType.java @@ -18,7 +18,7 @@ */ package org.apache.deltaspike.core.spi.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ExternalResourceStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResourceStorage; import javax.inject.Qualifier; import java.lang.annotation.Documented; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/BaseResourceProvider.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/BaseResourceProvider.java b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/BaseResourceProvider.java index aa751a3..f7bc2fc 100644 --- a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/BaseResourceProvider.java +++ b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/BaseResourceProvider.java @@ -18,7 +18,7 @@ */ package org.apache.deltaspike.core.impl.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; import org.apache.deltaspike.core.spi.resourceloader.ExternalResourceProvider; import javax.enterprise.inject.Any; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ClasspathResourceProvider.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ClasspathResourceProvider.java b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ClasspathResourceProvider.java index ecc2b86..a0a0f05 100644 --- a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ClasspathResourceProvider.java +++ b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ClasspathResourceProvider.java @@ -18,8 +18,8 @@ */ package org.apache.deltaspike.core.impl.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ClasspathStorage; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.ClasspathStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; import org.apache.deltaspike.core.spi.resourceloader.StorageType; import org.apache.deltaspike.core.util.ClassUtils; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ExternalResourceProducer.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ExternalResourceProducer.java b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ExternalResourceProducer.java index 95d3c9a..0d92f59 100644 --- a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ExternalResourceProducer.java +++ b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/ExternalResourceProducer.java @@ -18,8 +18,8 @@ */ package org.apache.deltaspike.core.impl.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; -import org.apache.deltaspike.core.api.resoureloader.ExternalResourceStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.ExternalResourceStorage; import org.apache.deltaspike.core.spi.literal.StorageTypeLiteral; import org.apache.deltaspike.core.spi.resourceloader.ExternalResourceProvider; import org.apache.deltaspike.core.spi.resourceloader.StorageType; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/FileResourceProvider.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/FileResourceProvider.java b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/FileResourceProvider.java index 67dbcc8..26dfd45 100644 --- a/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/FileResourceProvider.java +++ b/deltaspike/core/impl/src/main/java/org/apache/deltaspike/core/impl/resourceloader/FileResourceProvider.java @@ -18,8 +18,8 @@ */ package org.apache.deltaspike.core.impl.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; -import org.apache.deltaspike.core.api.resoureloader.FileSystemStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.FileSystemStorage; import org.apache.deltaspike.core.spi.resourceloader.StorageType; import javax.enterprise.context.ApplicationScoped; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/ClasspathResourceTest.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/ClasspathResourceTest.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/ClasspathResourceTest.java index 780a8e7..9672992 100644 --- a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/ClasspathResourceTest.java +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/ClasspathResourceTest.java @@ -19,8 +19,8 @@ package org.apache.deltaspike.test.core.impl.resourceloader; -import org.apache.deltaspike.core.api.resoureloader.ClasspathStorage; -import org.apache.deltaspike.core.api.resoureloader.ExternalResource; +import org.apache.deltaspike.core.api.resourceloader.ClasspathStorage; +import org.apache.deltaspike.core.api.resourceloader.ExternalResource; import org.apache.deltaspike.test.util.ArchiveUtils; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2c2f03be/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/FileResourceTest.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/FileResourceTest.java b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/FileResourceTest.java index 6c2fbd8..6ecca2d 100644 --- a/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/FileResourceTest.java +++ b/deltaspike/core/impl/src/test/java/org/apache/deltaspike/test/core/impl/resourceloader/FileResourceTest.java @@ -20,7 +20,7 @@ package org.apache.deltaspike.test.core.impl.resourceloader; import org.apache.deltaspike.core.api.literal.ExternalResourceLiteral; -import org.apache.deltaspike.core.api.resoureloader.FileSystemStorage; +import org.apache.deltaspike.core.api.resourceloader.FileSystemStorage; import org.apache.deltaspike.test.util.ArchiveUtils; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian;
