Apex Code |
/*
This file is generated and isn't the actual source code for this
managed global class.
This read-only file shows the class's global constructors,
methods, variables, and properties.
To enable code to compile, all methods return null.
*/
global class DocTemplateListController {
global String nameSpacePrefix {
get;
}
global System.PageReference newUrl {
get;
}
global DocTemplateListController() {
}
@RemoteAction
global static Map<String,Object> cloneDocumentTemplate(Id srcTemplateId) {
return null;
}
@RemoteAction
global static Map<String,Object> createNewVersionOfDocumentTemplate(Id srcTemplateId) {
return null;
}
@RemoteAction
global static List<Map<String,Object>> deactivateDocumentTemplate(Id templateId) {
return null;
}
@RemoteAction
global static List<Map<String,Object>> deleteDocumentTemplate(Id templateId) {
return null;
}
@RemoteAction
global static String getContractDocTemplates() {
return null;
}
@RemoteAction
global static SObject getDocumentByTemplate(Id templateId) {
return null;
}
global String getNamespacePrefix() {
return null;
}
@RemoteAction
global static Map<String,Object> getTemplateContentVersion(Id templateId) {
return null;
}
@RemoteAction
global static List<Map<String,Object>> getTemplateLanguages() {
return null;
}
@RemoteAction
global static Boolean isVerticalFirstThenOs() {
return null;
}
@RemoteAction
global static Boolean setTemplateContentVersion(Id templateId, Id contentVersionId) {
return null;
}
@RemoteAction
global static Boolean setTemplateContentVersionDocx(Id templateId, Id contentVersionId, Boolean isSectionIdsReplaced) {
return null;
}
}
|