diff options
author | mcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-28 14:07:54 +0000 |
---|---|---|
committer | mcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-28 14:07:54 +0000 |
commit | cd174bad484f3d6f2f755d9fe517b0b37d7f928b (patch) | |
tree | 064000c6d9c5f6ee61031848b46e8299f07086ec /java/sca/samples/photo-gallery | |
parent | 85060ec6b7a53cb76d969e5d30d80538c7f7ccb9 (diff) |
TUSCANY-2790 - Updated package names from org.osoa.sca to org.oasisopen.sca and from org.osoa.sca.annotations to org.oasisopen.sca.annotation to reflect the new package names in the OASIS Open SCA specifications.
To do this, I:
* Renamed the org.osoa.sca package to org.oasisopen.sca using Eclipse refactoring
* Renamed the org.osoa.sca.annotations package to org.oasisopen.sca.annotation using Eclipse refactoring
* Did a global search and replace for all remaining instances of the old org.osoa package names and replaced with the new org.oasisopen version
Hopefully, I have not missed too many instances of the old package name
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@738490 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/samples/photo-gallery')
3 files changed, 5 insertions, 5 deletions
diff --git a/java/sca/samples/photo-gallery/src/main/java/services/Album.java b/java/sca/samples/photo-gallery/src/main/java/services/Album.java index 5257d0e703..d614b6a504 100644 --- a/java/sca/samples/photo-gallery/src/main/java/services/Album.java +++ b/java/sca/samples/photo-gallery/src/main/java/services/Album.java @@ -19,7 +19,7 @@ package services; -import org.osoa.sca.annotations.Remotable; +import org.oasisopen.sca.annotation.Remotable; @Remotable public interface Album { diff --git a/java/sca/samples/photo-gallery/src/main/java/services/AlbumImpl.java b/java/sca/samples/photo-gallery/src/main/java/services/AlbumImpl.java index dd2b086e29..3cdc56e641 100644 --- a/java/sca/samples/photo-gallery/src/main/java/services/AlbumImpl.java +++ b/java/sca/samples/photo-gallery/src/main/java/services/AlbumImpl.java @@ -25,8 +25,8 @@ import java.net.URL; import java.util.ArrayList; import java.util.List; -import org.osoa.sca.annotations.Init; -import org.osoa.sca.annotations.Property; +import org.oasisopen.sca.annotation.Init; +import org.oasisopen.sca.annotation.Property; public class AlbumImpl implements Album { private String gallery; diff --git a/java/sca/samples/photo-gallery/src/main/java/services/jcr/AlbumImpl.java b/java/sca/samples/photo-gallery/src/main/java/services/jcr/AlbumImpl.java index ac4e6f52f4..8ede831ea0 100644 --- a/java/sca/samples/photo-gallery/src/main/java/services/jcr/AlbumImpl.java +++ b/java/sca/samples/photo-gallery/src/main/java/services/jcr/AlbumImpl.java @@ -33,8 +33,8 @@ import javax.jcr.Session; import javax.jcr.SimpleCredentials; import org.apache.jackrabbit.core.TransientRepository; -import org.osoa.sca.annotations.Init; -import org.osoa.sca.annotations.Property; +import org.oasisopen.sca.annotation.Init; +import org.oasisopen.sca.annotation.Property; import services.Album; |