Uses of Class
com.trendmicro.grid.acl.ds.jpa.entities.JpaFileDetails

Packages that use JpaFileDetails
com.trendmicro.grid.acl.ds.jpa Implements datasource APIs using JPA and defines generic abstraction APIs to bind DB specifc functionality in other modules. 
com.trendmicro.grid.acl.ds.jpa.entities Defines persistable, JPA enabled versions (sub-classes) of securable datatypes defined under the datasource API. 
 

Uses of JpaFileDetails in com.trendmicro.grid.acl.ds.jpa
 

Methods in com.trendmicro.grid.acl.ds.jpa that return JpaFileDetails
 JpaFileDetails JpaFileRepository.createFileDetails(com.trendmicro.grid.acl.l0.datatypes.FileDetails fileDetails)
          Creates the specified FILE_CONTENTs entry.
protected  JpaFileDetails AbstractReceivedFileContentsHandler.createOrUpdateFileReference(AbstractReceivedResultsHandler.StorageContext context, com.trendmicro.grid.acl.l0.datatypes.FileDetails details, boolean forceTimeUpdates)
          Creates or updates the file reference for the given source file details instance.
 JpaFileDetails JpaFileRepository.getFileDetails(com.trendmicro.grid.acl.l0.datatypes.FileIdentifier identifier)
          Returns the JpaFileDetails element for the given identifer.
 JpaFileDetails ReceivedPreparedPackagesHandler.PreparedPackage.getFileReference()
          Returns the reference to the package file.
 JpaFileDetails JpaFileRepository.getReference(com.trendmicro.grid.acl.l0.datatypes.FileIdentifier identifier)
          Returns a lazy loaded JpaFileDetails that may be used to satisfy foreign keys with minimum overhead.
 JpaFileDetails JpaFileRepository.getReference(FileQueryConfigurator<Integer> primaryKeyQueryConfigurator, com.trendmicro.grid.acl.l0.datatypes.FileIdentifier identifier)
          Returns a lazy loaded JpaFileDetails that may be used to satisfy foreign keys with minimum overhead.
 

Methods in com.trendmicro.grid.acl.ds.jpa that return types with arguments of type JpaFileDetails
protected  Collection<JpaFileDetails> AbstractReceivedFileContentsHandler.createOrUpdateFileReferences(AbstractReceivedResultsHandler.StorageContext context, Collection<com.trendmicro.grid.acl.l0.datatypes.PackageMember> members)
          Creates or updates the file references for the given list of package members.
 FileQueryConfigurator<JpaFileDetails> JpaFileRepository.getDetailsQueryConfigurator()
          Returns a query configurator that configures queries returning FileDetails by FileIdentifiers.
 Collection<JpaFileDetails> JpaFileRepository.getJpaFileDetailsList(Collection<com.trendmicro.grid.acl.l0.datatypes.FileIdentifier> files)
          Returns the file details list for the given files.
 Collection<JpaFileDetails> JpaFileRepository.getReferences(Collection<? extends com.trendmicro.grid.acl.l0.datatypes.FileIdentifier> identifiers)
          Returns lazy loaded JpaFileDetails that may be used to satisfy foreign keys with minimum overhead.
 

Method parameters in com.trendmicro.grid.acl.ds.jpa with type arguments of type JpaFileDetails
protected  void JpaSourceRepository.referenceFilesFromSources(Collection<JpaFileDetails> fileReferences, Collection<JpaSource> sourceReferences)
          Links (references) the given files with all given sources.
 

Uses of JpaFileDetails in com.trendmicro.grid.acl.ds.jpa.entities
 

Methods in com.trendmicro.grid.acl.ds.jpa.entities that return JpaFileDetails
 JpaFileDetails JpaNamedFileIdentifierId.getFileDetails()
           
 JpaFileDetails JpaNamedFileIdentifierHistoryId.getFileDetails()
           
 JpaFileDetails JpaFileSourceId.getFileDetails()
           
 JpaFileDetails JpaFileReport.getFileDetails()
           
 JpaFileDetails JpaFileReport.ID.getFileDetails()
           
 JpaFileDetails JpaPackageDetails.getPackageFileDetails()
           
 JpaFileDetails JpaFileHistory.ID.getParent()
           
 

Methods in com.trendmicro.grid.acl.ds.jpa.entities with parameters of type JpaFileDetails
 void JpaPackageDetails.setPackageFileDetails(JpaFileDetails packageFileDetails)
           
static boolean JpaFileHistory.wasChanged(JpaFileDetails existingDetails, com.trendmicro.grid.acl.l0.datatypes.FileDetails details, boolean ignoreMetadata)
          Returns true if history relevant values differ.
 

Constructors in com.trendmicro.grid.acl.ds.jpa.entities with parameters of type JpaFileDetails
JpaFileHistory.ID(JpaFileDetails parent)
           
JpaFileHistory(JpaFileDetails fileDetails)
          Creates a new history entry for the given file content entry.
JpaFileReport.ID(JpaFileDetails fileDetails)
           
JpaFileReport(JpaFileDetails fileDetails, com.trendmicro.grid.acl.l0.datatypes.FileReport other)
           
JpaFileSource(JpaFileDetails fileDetails, JpaSource source)
           
JpaFileSourceId(JpaFileDetails fileDetails, JpaSource source)
           
JpaNamedFileIdentifier(JpaFileDetails fileDetails, JpaPackageDetails packageDetails, String fileName)
           
JpaNamedFileIdentifierHistory(JpaFileDetails fileDetails, JpaPackageDetails packageDetails, String fileName, JpaNamedFileIdentifierHistory.HistoryType type, int revision)
           
JpaNamedFileIdentifierHistoryId(JpaFileDetails fileDetails, JpaPackageDetails packageDetails, String fileName, int revision)
           
JpaNamedFileIdentifierId(JpaFileDetails fileDetails, JpaPackageDetails packageDetails, String fileName)
           
JpaPackageDetails(JpaPackageFamily packageFamily, JpaPackageInformation packageInformation, com.trendmicro.grid.acl.metadata.Metadata metadata, JpaFileDetails packageFileDetails)