Uses of Interface
magoffin.matt.ma2.domain.Collection

Packages that use Collection
magoffin.matt.ma2.biz   
magoffin.matt.ma2.biz.impl   
magoffin.matt.ma2.dao   
magoffin.matt.ma2.dao.hbm   
magoffin.matt.ma2.domain   
 

Uses of Collection in magoffin.matt.ma2.biz
 

Methods in magoffin.matt.ma2.biz that return Collection
 Collection UserBiz.getCollection(java.lang.Long collectionId, BizContext context)
          Get a single collection.
 Collection MediaBiz.getCollectionWithItems(java.lang.Long collectionId, BizContext context)
          Get a Collection along with the MediaItems of that collection.
 Collection MediaBiz.getMediaItemCollection(MediaItem item)
          Get the Collection for a given MediaItem.
 Collection UserBiz.newCollectionForUser(Collection collection, User user, BizContext context)
          Create a new Collection for a given user.
 Collection DomainObjectFactory.newCollectionInstance()
          Get a new Collection instance.
 

Methods in magoffin.matt.ma2.biz that return types with arguments of type Collection
 java.util.List<Collection> UserBiz.getCollectionsForUser(User user, BizContext context)
          Get all collections for a given user.
 

Methods in magoffin.matt.ma2.biz with parameters of type Collection
 java.io.File UserBiz.getCollectionDirectory(Collection collection, BizContext context)
          Get the directory for a given collection.
 java.util.List<MediaItem> MediaBiz.getMediaItemsForCollection(Collection collection, BizContext context)
          Get all MediaItems that belong to a given Collection.
 int IOBiz.moveMedia(java.util.List<MediaItem> itemsToMove, Collection toCollection)
          Move media item files to a new directory.
 Collection UserBiz.newCollectionForUser(Collection collection, User user, BizContext context)
          Create a new Collection for a given user.
 java.lang.Long UserBiz.storeCollection(Collection collection, BizContext context)
          Store a collection in the back end.
 

Uses of Collection in magoffin.matt.ma2.biz.impl
 

Methods in magoffin.matt.ma2.biz.impl that return Collection
 Collection UserBizImpl.getCollection(java.lang.Long collectionId, BizContext context)
           
 Collection MediaBizImpl.getCollectionWithItems(java.lang.Long collectionId, BizContext context)
           
 Collection MediaBizImpl.getMediaItemCollection(MediaItem item)
           
 Collection UserBizImpl.newCollectionForUser(Collection collection, User user, BizContext context)
           
 Collection JAXBDomainObjectFactory.newCollectionInstance()
           
 

Methods in magoffin.matt.ma2.biz.impl that return types with arguments of type Collection
 java.util.List<Collection> UserBizImpl.getCollectionsForUser(User user, BizContext context)
           
 

Methods in magoffin.matt.ma2.biz.impl with parameters of type Collection
 java.io.File UserBizImpl.getCollectionDirectory(Collection collection, BizContext context)
           
 java.util.List<MediaItem> MediaBizImpl.getMediaItemsForCollection(Collection collection, BizContext context)
           
 int IOBizImpl.moveMedia(java.util.List<MediaItem> itemsToMove, Collection toCollection)
           
 Collection UserBizImpl.newCollectionForUser(Collection collection, User user, BizContext context)
           
 java.lang.Long UserBizImpl.storeCollection(Collection collection, BizContext context)
           
 

Uses of Collection in magoffin.matt.ma2.dao
 

Methods in magoffin.matt.ma2.dao that return Collection
 Collection CollectionDao.getCollectionForMediaItem(java.lang.Long mediaItemId)
          Get the collection a MediaItem is in.
 Collection CollectionDao.getCollectionWithItems(java.lang.Long collectionId)
          Get an Collection with it's items fully populated.
 

Methods in magoffin.matt.ma2.dao that return types with arguments of type Collection
 java.util.List<Collection> CollectionDao.findCollectionsForUser(java.lang.Long userId)
          Find all collections owned by a given user.
 

Uses of Collection in magoffin.matt.ma2.dao.hbm
 

Methods in magoffin.matt.ma2.dao.hbm that return Collection
 Collection HibernateCollectionDao.getCollectionForMediaItem(java.lang.Long mediaItemId)
           
 Collection HibernateCollectionDao.getCollectionWithItems(java.lang.Long collectionId)
           
 

Methods in magoffin.matt.ma2.dao.hbm that return types with arguments of type Collection
 java.util.List<Collection> HibernateCollectionDao.findCollectionsForUser(java.lang.Long userId)
           
 

Methods in magoffin.matt.ma2.dao.hbm with parameters of type Collection
protected  java.lang.Long HibernateCollectionDao.getPrimaryKey(Collection domainObject)
           
 

Uses of Collection in magoffin.matt.ma2.domain
 

Methods in magoffin.matt.ma2.domain that return Collection
 Collection ObjectFactory.createCollection()
          Create an instance of Collection
 Collection UiEdit.getCollection()
          Gets the value of the collection property.
 

Methods in magoffin.matt.ma2.domain with parameters of type Collection
 void UiEdit.setCollection(Collection value)
          Sets the value of the collection property.