Uses of Class
com.avoka.fc.core.entity.Library
-
Packages that use Library Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.listener Provides Cayenne listener classes that execute custom functionality on various Cayenne events. -
-
Uses of Library in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return Library Modifier and Type Method Description Library
LibraryDao. getLibraryForClient(Long clientId, String libraryName)
Deprecated.This method does not deterministically return a library because libraries are now also distinguished by version number.Library
LibraryDao. getLibraryForClient(Long clientId, String libraryNormalizedName, String version)
Return the library for the specified normalized name and version.Library
LibraryDao. getLibraryForClientByNormalizedName(Long clientId, String libraryNormalizedName)
Deprecated.This method does not deterministically return a library because libraries are now also distinguished by version number.Library
LibraryDao. getLibraryForPK(Object libraryId)
Return the library with the specified IDLibrary
LibraryDao. getLibraryForProject(Long projectId, String libraryName)
Deprecated.This method does not deterministically return a library because libraries are now also distinguished by version number.Library
LibraryDao. getLibraryForProject(Long projectId, String libraryNameNorm, String version)
Return the library for the specified project, name normalized and version.Library
LibraryDao. getLibraryForReleaseVersion(Long releaseVersionId, String libraryName)
Return the library for the specified name.Library
LibraryDao. getReleaseLibraryForVersionNumber(String versionNumber, String libraryName)
Return the release library for the specified library name and version number.Library
LibraryDao. getReleaseLibraryForVersionNumberByNormalizedName(String versionNumber, String libraryNormalizedName)
Return the release library for the specified library normalized name and version number.Library
LibraryDao. getVersionLibraryForName(String libraryName)
Return the library for the specified name.Methods in com.avoka.fc.core.dao that return types with arguments of type Library Modifier and Type Method Description List<Library>
LibraryDao. getLibraryList(String libraryType, String parentId)
Return a list of libraries for the given type and of the specified parent if defined.Methods in com.avoka.fc.core.dao with parameters of type Library Modifier and Type Method Description LibraryResource
LibraryResourceDao. getLibraryResourceForPath(Library library, String path)
Return the library resource for the given library and path or null if not found. -
Uses of Library in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type Library Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<Library>>
_Client. LIBRARIES
Provides the 'LIBRARIES' property.static org.apache.cayenne.exp.Property<List<Library>>
_Project. LIBRARIES
Provides the 'LIBRARIES' property.static org.apache.cayenne.exp.Property<List<Library>>
_ReleaseVersion. LIBRARIES
Provides the 'LIBRARIES' property.static org.apache.cayenne.exp.Property<Library>
_FormDesignVersion. LIBRARY
Provides the 'LIBRARY' property.static org.apache.cayenne.exp.Property<Library>
_FormDesignVersionInclude. LIBRARY
Provides the 'LIBRARY' property.static org.apache.cayenne.exp.Property<Library>
_LibraryResource. LIBRARY
Provides the 'LIBRARY' property.static org.apache.cayenne.exp.Property<Library>
_LibraryShare. LIBRARY
Provides the 'LIBRARY' property.static org.apache.cayenne.exp.Property<Library>
_ProjectInclude. LIBRARY
Provides the 'LIBRARY' property.Methods in com.avoka.fc.core.entity.auto that return Library Modifier and Type Method Description Library
_FormDesignVersion. getLibrary()
Return the Library.Library
_FormDesignVersionInclude. getLibrary()
Return the Library.Library
_LibraryResource. getLibrary()
Return the Library.Library
_LibraryShare. getLibrary()
Return the Library.Library
_ProjectInclude. getLibrary()
Return the Library.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type Library Modifier and Type Method Description List<Library>
_Client. getLibraries()
Return the Libraries.List<Library>
_Project. getLibraries()
Return the Libraries.List<Library>
_ReleaseVersion. getLibraries()
Return the Libraries.Methods in com.avoka.fc.core.entity.auto with parameters of type Library Modifier and Type Method Description void
_Client. addToLibraries(Library obj)
Add the Libraries object.void
_Project. addToLibraries(Library obj)
Add the Libraries object.void
_ReleaseVersion. addToLibraries(Library obj)
Add the Libraries object.void
_Client. removeFromLibraries(Library obj)
Remove the Libraries object.void
_Project. removeFromLibraries(Library obj)
Remove the Libraries object.void
_ReleaseVersion. removeFromLibraries(Library obj)
Remove the Libraries object.void
_FormDesignVersion. setLibrary(Library library)
Set the Library.void
_FormDesignVersionInclude. setLibrary(Library library)
Set the Library.void
_LibraryResource. setLibrary(Library library)
Set the Library.void
_LibraryShare. setLibrary(Library library)
Set the Library.void
_ProjectInclude. setLibrary(Library library)
Set the Library. -
Uses of Library in com.avoka.fc.core.listener
Methods in com.avoka.fc.core.listener with parameters of type Library Modifier and Type Method Description void
LibraryListener. validateLibrary(Library library)
Performs validation at commit time.
-