Revisions
-
galderz revised this gist
Oct 27, 2011 . 1 changed file with 11 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,14 @@ ... import javax.ejb.Stateless; import javax.inject.Inject; import org.infinispan.Cache; import org.infinispan.manager.EmbeddedCacheManager; @Stateless class FooEJB { @Inject Cache<String, String> defaultCache; @Inject EmbeddedCacheManager defaultCacheManager; } -
galderz revised this gist
Oct 27, 2011 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ ... import javax.ejb.Stateless; import javax.inject.Inject; import org.infinispan.Cache; import org.infinispan.manager.EmbeddedCacheManager; @Stateless class FooEJB { -
maniksurtani revised this gist
Sep 21, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ @Stateless class FooEJB { @Inject Cache<String, String> defaultCache; @Inject EmbeddedCacheManager defaultCacheManager; -
maniksurtani created this gist
Sep 21, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ ... import javax.ejb.Stateless; import javax.inject.Inject; @Stateless class FooEJB { @Inject Cache<String, String> defaultCache; @Inject EmbeddedCacheManager defaultCacheManager; }