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

Packages that use JpaVendor
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 JpaVendor in com.trendmicro.grid.acl.ds.jpa
 

Methods in com.trendmicro.grid.acl.ds.jpa that return JpaVendor
 JpaVendor JpaVendorRepository.create(String name, String displayName, com.trendmicro.grid.acl.metadata.Metadata metadata)
          
 JpaVendor JpaVendorRepository.getByName(String name)
          
 JpaVendor JpaVendorRepository.getReferenceByName(String name)
          Returns a lightweight reference used to satisfy foreign key constraints.
 

Methods in com.trendmicro.grid.acl.ds.jpa with parameters of type JpaVendor
 JpaPackageFamily JpaPackageFamilyRepository.create(JpaVendor vendor, String basename, String displayName, com.trendmicro.grid.acl.metadata.Metadata metadata)
           
 

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

Methods in com.trendmicro.grid.acl.ds.jpa.entities that return JpaVendor
 JpaVendor JpaPackageFamily.getVendor()
           
 

Methods in com.trendmicro.grid.acl.ds.jpa.entities with parameters of type JpaVendor
 void JpaPackageFamily.setVendor(JpaVendor vendor)
           
 

Constructors in com.trendmicro.grid.acl.ds.jpa.entities with parameters of type JpaVendor
JpaPackageFamily(JpaVendor vendor, String basename, String displayName, com.trendmicro.grid.acl.metadata.Metadata metadata)