From 5a5b48feff3a0b0a660aaaa9bdfd04fd0fe711ed Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 23 Oct 2014 00:26:01 -0400 Subject: added new cabac value --- MediaBrowser.Controller/Library/ILibraryManager.cs | 30 ++++++++-------------- 1 file changed, 11 insertions(+), 19 deletions(-) (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 951513962..f93564882 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -17,30 +17,14 @@ namespace MediaBrowser.Controller.Library /// public interface ILibraryManager { - /// - /// Resolves the item. - /// - /// The args. - /// BaseItem. - BaseItem ResolveItem(ItemResolveArgs args); - - /// - /// Resolves a path into a BaseItem - /// - /// The file info. - /// The directory service. - /// The parent. - /// BaseItem. - /// - BaseItem ResolvePath(FileSystemInfo fileInfo, IDirectoryService directoryService, Folder parent = null); - /// /// Resolves the path. /// /// The file information. /// The parent. + /// Type of the collection. /// BaseItem. - BaseItem ResolvePath(FileSystemInfo fileInfo, Folder parent = null); + BaseItem ResolvePath(FileSystemInfo fileInfo, Folder parent = null, string collectionType = null); /// /// Resolves a set of files into a list of BaseItem @@ -49,8 +33,9 @@ namespace MediaBrowser.Controller.Library /// The files. /// The directory service. /// The parent. + /// Type of the collection. /// List{``0}. - List ResolvePaths(IEnumerable files, IDirectoryService directoryService, Folder parent) + List ResolvePaths(IEnumerable files, IDirectoryService directoryService, Folder parent, string collectionType = null) where T : BaseItem; /// @@ -151,6 +136,13 @@ namespace MediaBrowser.Controller.Library /// BaseItem. BaseItem GetItemById(Guid id); + /// + /// Gets the memory item by identifier. + /// + /// The identifier. + /// BaseItem. + BaseItem GetMemoryItemById(Guid id); + /// /// Gets the intros. /// -- cgit v1.2.3