|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of AnnotationException in com.groupdocs.annotation.common |
|---|
| Methods in com.groupdocs.annotation.common that throw AnnotationException | ||
|---|---|---|
static
|
Utils.assetEntity(T t)
Asset entity for null |
|
static
|
Utils.assetEntity(T t,
String errorMessage)
Asset entity for null |
|
static String |
Utils.getBody(javax.servlet.http.HttpServletRequest request)
Get body from HTTP servlet request |
|
static
|
Utils.getObjectData(String request,
Class<T> clazz)
Get object from request |
|
static void |
Utils.throwIfNull(Object object)
|
|
| Uses of AnnotationException in com.groupdocs.annotation.data |
|---|
| Methods in com.groupdocs.annotation.data that throw AnnotationException | |
|---|---|
static IAnnotationDao |
DaoFactory.createAnnotationDao()
Create Annotation DAO object |
static ICollaboratorDao |
DaoFactory.createCollaboratorDao()
Create Collaborator DAO object |
static IDocumentDao |
DaoFactory.createDocumentDao()
Create Document DAO object |
static IReplyDao |
DaoFactory.createReplyDao()
Create Reply DAO object |
static ISessionDao |
DaoFactory.createSessionDao()
Create Session DAO object |
protected static ISystemInfoDao |
DaoFactory.createSystemInfoDao()
Create SystemInfo DAO object |
static IUserDao |
DaoFactory.createUserDao()
Create User DAO object |
static void |
DaoFactory.initializeStorage()
Initialize storage |
static void |
DaoFactory.setDataConnector(IConnector databaseConnector)
Set custom database connector |
| Uses of AnnotationException in com.groupdocs.annotation.data.connector |
|---|
| Methods in com.groupdocs.annotation.data.connector that throw AnnotationException | |
|---|---|
void |
IConnector.closeConnection()
Close connection to database |
IAnnotationDao |
IConnector.getAnnotationDao()
Get annotation dao |
ICollaboratorDao |
IConnector.getCollaboratorDao()
Get collaborator dao |
IDocumentDao |
IConnector.getDocumentDao()
Get document dao |
IReplyDao |
IConnector.getReplyDao()
Get reply dao |
ISessionDao |
IConnector.getSessionDao()
Get session dao |
ISystemInfoDao |
IConnector.getSystemInfoDao()
Get system info dao |
IUserDao |
IConnector.getUserDao()
Get user dao |
void |
IConnector.openConnection()
Open connection to database |
| Uses of AnnotationException in com.groupdocs.annotation.data.connector.data |
|---|
| Methods in com.groupdocs.annotation.data.connector.data that throw AnnotationException | |
|---|---|
void |
AbstractDataConnector.closeConnection()
Close connection to database |
void |
AbstractDataConnector.openConnection()
Open connection to database |
| Constructors in com.groupdocs.annotation.data.connector.data that throw AnnotationException | |
|---|---|
JsonDataConnector(String storagePath)
Create JSON data connector |
|
JsonDataConnector(String storagePath,
StoreLogic storeLogic)
Create JSON data connector |
|
XmlDataConnector(String storagePath)
Create XML data connector |
|
XmlDataConnector(String storagePath,
StoreLogic storeLogic)
Create JSON data connector |
|
| Uses of AnnotationException in com.groupdocs.annotation.data.connector.db |
|---|
| Methods in com.groupdocs.annotation.data.connector.db that throw AnnotationException | |
|---|---|
void |
AbstractDatabaseConnector.closeConnection()
Close connection to database |
IAnnotationDao |
AbstractDatabaseConnector.getAnnotationDao()
Get annotation dao |
ICollaboratorDao |
AbstractDatabaseConnector.getCollaboratorDao()
Get collaborator dao |
IDocumentDao |
AbstractDatabaseConnector.getDocumentDao()
Get document dao |
IReplyDao |
AbstractDatabaseConnector.getReplyDao()
Get reply dao |
ISessionDao |
AbstractDatabaseConnector.getSessionDao()
Get session dao |
ISystemInfoDao |
AbstractDatabaseConnector.getSystemInfoDao()
Get system info dao |
IUserDao |
AbstractDatabaseConnector.getUserDao()
Get user dao |
void |
AbstractDatabaseConnector.openConnection()
Open connection to database |
| Constructors in com.groupdocs.annotation.data.connector.db that throw AnnotationException | |
|---|---|
AbstractDatabaseConnector(String dbDriver,
String dbConnectionString)
Create database connector |
|
MssqlDatabaseConnector(String dbServer,
int dbPort,
String dbName,
String dbUsername,
String dbPassword)
Create database connector |
|
MssqlDatabaseConnector(String dbDriver,
String dbServer,
int dbPort,
String dbName,
String dbUsername,
String dbPassword)
Create database connector |
|
MysqlDatabaseConnector(String dbServer,
int dbPort,
String dbName,
String dbUsername,
String dbPassword)
Create database connector |
|
MysqlDatabaseConnector(String dbDriver,
String dbServer,
int dbPort,
String dbName,
String dbUsername,
String dbPassword)
Create database connector |
|
PostgresqlDatabaseConnector(String dbServer,
int dbPort,
String dbName,
String dbUsername,
String dbPassword)
Create database connector |
|
PostgresqlDatabaseConnector(String dbDriver,
String dbServer,
int dbPort,
String dbName,
String dbUsername,
String dbPassword)
Create database connector |
|
SqliteDatabaseConnector(String dbPath)
Create sqlite database connector |
|
SqliteDatabaseConnector(String dbDriver,
String dbPath)
Create sqlite database connector |
|
| Uses of AnnotationException in com.groupdocs.annotation.data.connector.db.updater |
|---|
| Methods in com.groupdocs.annotation.data.connector.db.updater that throw AnnotationException | |
|---|---|
protected void |
CommonStorageSchemaUpdater.executeSQL(String sql)
Execute SQL |
boolean |
SqliteStorageSchemaUpdater.executeUpdateSQLs(String sql)
|
protected Connection |
CommonStorageSchemaUpdater.getSchemaUpdateConnection()
Create connection for update database schema |
boolean |
CommonStorageSchemaUpdater.onCreateColumn(String tableName,
String fieldName,
Class fieldType)
Create column in table |
boolean |
IStorageSchemaUpdater.onCreateColumn(String tableName,
String fieldName,
Class fieldType)
Create column in table |
boolean |
PostgresqlStorageSchemaUpdater.onCreateColumn(String tableName,
String fieldName,
Class fieldType)
Create column in table |
boolean |
CommonStorageSchemaUpdater.onDeleteColumn(String tableName,
String fieldName)
Delete column from table |
boolean |
IStorageSchemaUpdater.onDeleteColumn(String tableName,
String fieldName)
Delete column from table |
boolean |
MssqlStorageSchemaUpdater.onDeleteColumn(String tableName,
String fieldName)
Delete column from table |
boolean |
MysqlStorageSchemaUpdater.onDeleteColumn(String tableName,
String fieldName)
Delete column from table |
boolean |
PostgresqlStorageSchemaUpdater.onDeleteColumn(String tableName,
String fieldName)
Delete column from table |
boolean |
SqliteStorageSchemaUpdater.onDeleteColumn(String tableName,
String fieldName)
Delete column from table |
boolean |
CommonStorageSchemaUpdater.onDeleteTable(String tableName)
Delete table from database |
boolean |
IStorageSchemaUpdater.onDeleteTable(String tableName)
Delete table from database |
boolean |
PostgresqlStorageSchemaUpdater.onDeleteTable(String tableName)
Delete table from database |
boolean |
CommonStorageSchemaUpdater.onRenameColumn(String tableName,
String fieldName,
String newFieldName)
Rename table column |
boolean |
IStorageSchemaUpdater.onRenameColumn(String tableName,
String fieldName,
String newFieldName)
Rename table column |
boolean |
MssqlStorageSchemaUpdater.onRenameColumn(String tableName,
String fieldName,
String newFieldName)
|
boolean |
MysqlStorageSchemaUpdater.onRenameColumn(String tableName,
String columnName,
String newColumnName)
|
boolean |
PostgresqlStorageSchemaUpdater.onRenameColumn(String tableName,
String fieldName,
String newFieldName)
Rename table column |
boolean |
SqliteStorageSchemaUpdater.onRenameColumn(String tableName,
String fieldName,
String newFieldName)
Rename table column |
boolean |
CommonStorageSchemaUpdater.onRenameTable(String tableName,
String newTableName)
Rename table |
boolean |
IStorageSchemaUpdater.onRenameTable(String tableName,
String newTableName)
Rename table |
boolean |
MssqlStorageSchemaUpdater.onRenameTable(String tableName,
String newTableName)
|
boolean |
PostgresqlStorageSchemaUpdater.onRenameTable(String tableName,
String newTableName)
Rename table |
boolean |
CommonStorageSchemaUpdater.setStorageSchemaVersion(int storageSchemaVersion)
Set database schema version |
boolean |
IStorageSchemaUpdater.setStorageSchemaVersion(int storageSchemaVersion)
Set database schema version |
boolean |
PostgresqlStorageSchemaUpdater.setStorageSchemaVersion(int storageSchemaVersion)
Set database schema version |
| Uses of AnnotationException in com.groupdocs.annotation.data.constructor |
|---|
| Methods in com.groupdocs.annotation.data.constructor that throw AnnotationException | |
|---|---|
AnnotationConstructor |
AnnotationConstructor.insert()
Inset entity to database |
CollaboratorConstructor |
CollaboratorConstructor.insert()
Inset entity to database |
DocumentConstructor |
DocumentConstructor.insert()
Inset entity to database |
ReplyConstructor |
ReplyConstructor.insert()
Inset entity to database |
SessionConstructor |
SessionConstructor.insert()
Inset entity to database |
UserConstructor |
UserConstructor.insert()
Inset entity to database |
IAnnotation |
AnnotationConstructor.select()
Select entity from database by guid |
ICollaborator |
CollaboratorConstructor.select()
Select entity from database by guid |
IDocument |
DocumentConstructor.select()
Select entity from database by guid |
IReply |
ReplyConstructor.select()
Select entity from database by guid |
ISession |
SessionConstructor.select()
Select entity from database by guid |
IUser |
UserConstructor.select()
Select entity from database by guid |
| Uses of AnnotationException in com.groupdocs.annotation.data.dao.interfaces |
|---|
| Methods in com.groupdocs.annotation.data.dao.interfaces that throw AnnotationException | |
|---|---|
void |
IDao.createTableIfNotExists()
Create table for entity |
List<T> |
IDao.selectAllBy(List<String> fieldNames,
Object... fieldValues)
Select all entity objects with specified values of fields |
T |
IDao.selectBy(List<String> fieldNames,
Object... fieldValues)
Select first found entity object with specified values of fields |
| Uses of AnnotationException in com.groupdocs.annotation.handler |
|---|
| Methods in com.groupdocs.annotation.handler that throw AnnotationException | |
|---|---|
AddAnnotationReplyResult |
AnnotationHandler.addAnnotationReply(String annotationGuid,
String userGuid,
String fieldText,
String parentReplyGuid,
String connectionId)
Add annotation reply |
abstract Object |
GroupDocsAnnotation.addAnnotationReplyHandler(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Add reply to annotation [POST request] |
String |
AnnotationHandler.addCollaborator(String userName,
String fileGuid,
AccessRights accessRights,
int color)
Add collaborator if one doesn't exist and return guid |
String |
AnnotationHandler.addCollaborator(String userName,
String fileGuid,
Integer accessRights,
int color)
Add collaborator if one doesn't exist and return guid |
String |
AnnotationHandler.addCollaboratorByGuid(String userGuid,
String fileGuid,
AccessRights accessRights,
int color)
Add collaborator if one doesn't exist and return guid |
String |
AnnotationHandler.addCollaboratorByGuid(String userGuid,
String fileGuid,
Integer accessRights,
int color)
Add collaborator if one doesn't exist and return guid |
CreateAnnotationResult |
AnnotationHandler.createAnnotation(String fileGuid,
Position position,
Rectangle rectangle,
AnnotationType annotationType,
String userGuid,
int pageNumber,
String svgPath,
String textField,
String connectionId)
Create annotation |
DeleteAnnotationResult |
AnnotationHandler.deleteAnnotation(String userGuid,
String annotationGuid,
String connectionId)
Delete annotation |
DeleteAnnotationReplyResult |
AnnotationHandler.deleteAnnotationReply(String replyGuid,
String annotationGuid,
String connectionId)
Delete annotation reply handler |
EditAnnotationReplyResult |
AnnotationHandler.editAnnotationReply(String replyGuid,
String replyText,
String connectionId,
String annotationGuid)
Edit annotation reply handler |
ExportAnnotationsResult |
AnnotationHandler.exportAnnotations(String fileGuid,
ExportType exportType,
Integer mode,
String applicationPath,
boolean isWithComments)
Export annotations to file |
void |
AnnotationHandler.getAvatar(String userGuid,
OutputStream outputStream)
Get avatar handler |
GetDocumentCollaboratorsResult |
AnnotationHandler.getDocumentCollaborators(String fileGuid,
String userGuid)
Get document collaborators |
void |
AnnotationHandler.getPrintDocumentPageImage(String documentGuid,
Integer pageIndex,
OutputStream outputStream)
Get image file for print [GET request] |
GetPrintViewResult |
AnnotationHandler.getPrintView(String documentGuid,
String applicationPath)
Return printable HTML string |
byte[] |
AnnotationHandler.getUserAvatar(String userGuid)
Return avatar file |
ImportAnnotationsResult |
AnnotationHandler.importAnnotations(String fileGuid,
String userGuid)
Import annotations from PDF file |
ListAnnotationsResult |
AnnotationHandler.listAnnotations(String fileGuid)
List annotations for document |
MoveAnnotationMarkerResult |
AnnotationHandler.moveAnnotationMarker(String annotationGuid,
Double annotationLeft,
Double annotationTop,
String connectionId)
Move annotation handler |
ResizeAnnotationResult |
AnnotationHandler.resizeAnnotation(String annotationGuid,
Double width,
Double height,
String connectionId)
Resize annotation handler |
RestoreAnnotationRepliesResult |
AnnotationHandler.restoreAnnotationReplies(RestoreAnnotationRepliesData restoreAnnotationRepliesData)
Restore annotation replies [POST request] |
SaveTextFieldResult |
AnnotationHandler.saveTextField(String annotationGuid,
String text,
String fontFamily,
Float fontSize,
String connectionId)
Save annotation text field handler |
SetTextFieldColorResult |
AnnotationHandler.setTextFieldColor(String annotationGuid,
String connectionId,
Integer fontColor)
Set annotation text field handler |
void |
AnnotationHandler.setUserAvatar(String userGuid,
byte[] avatarFile)
Set new avatar for user |
UploadFileResult |
AnnotationHandler.uploadFile(String uploadFileName,
InputStream uploadInputStream)
Upload file |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||