-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathAlfrescoPropertyConstants.m
executable file
·104 lines (83 loc) · 5.21 KB
/
AlfrescoPropertyConstants.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
******************************************************************************
* Copyright (C) 2005-2014 Alfresco Software Limited.
*
* This file is part of the Alfresco Mobile SDK.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************
*/
#import "AlfrescoPropertyConstants.h"
NSString * const kAlfrescoPersonIdentifier = @"identifier";
NSString * const kAlfrescoPersonFirstName = @"firstName";
NSString * const kAlfrescoPersonLastName = @"lastName";
NSString * const kAlfrescoPersonAvatarIdentifier = @"avatarIdentifier";
NSString * const kAlfrescoPersonJobTitle = @"jobTitle";
NSString * const kAlfrescoPersonLocation = @"location";
NSString * const kAlfrescoPersonSummary = @"summary";
NSString * const kAlfrescoPersonTelephoneNumber = @"telephoneNumber";
NSString * const kAlfrescoPersonMobileNumber = @"mobileNumber";
NSString * const kAlfrescoPersonEmail = @"email";
NSString * const kAlfrescoPersonSkypeId = @"skypeId";
NSString * const kAlfrescoPersonInstantMessageId = @"instantMessageId";
NSString * const kAlfrescoPersonGoogleId = @"googleId";
NSString * const kAlfrescoPersonStatus = @"status";
NSString * const kAlfrescoPersonStatusTime = @"statusTime";
NSString * const kAlfrescoPersonCompany = @"company";
NSString * const kAlfrescoCompanyName = @"name";
NSString * const kAlfrescoCompanyAddressLine1 = @"addressLine1";
NSString * const kAlfrescoCompanyAddressLine2 = @"addressLine2";
NSString * const kAlfrescoCompanyAddressLine3 = @"addressLine3";
NSString * const kAlfrescoCompanyPostCode = @"postCode";
NSString * const kAlfrescoCompanyTelephoneNumber = @"telephoneNumber";
NSString * const kAlfrescoCompanyFaxNumber = @"faxNumber";
NSString * const kAlfrescoCompanyEmail = @"email";
NSString * const kAlfrescoBaseConfigPropertyIdentifier = @"identifier";
NSString * const kAlfrescoBaseConfigPropertyLabel = @"label";
NSString * const kAlfrescoBaseConfigPropertySummary = @"summary";
NSString * const kAlfrescoConfigInfoPropertySchemaVersion = @"schemaVersion";
NSString * const kAlfrescoCreationConfigPropertyCreatableMimeTypes = @"creatableMimeTypes";
NSString * const kAlfrescoCreationConfigPropertyCreatableDocumentTypes = @"createDocumentTypes";
NSString * const kAlfrescoCreationConfigPropertyCreatableFolderTypes = @"creatableFolderTypes";
NSString * const kAlfrescoFieldConfigPropertyModelIdentifier = @"modelIdentifier";
NSString * const kAlfrescoFormConfigPropertyLayout = @"layout";
NSString * const kAlfrescoGroupConfigPropertyItems = @"items";
NSString * const kAlfrescoItemConfigPropertyIconIdentifier = @"iconIdentifier";
NSString * const kAlfrescoItemConfigPropertyType = @"type";
NSString * const kAlfrescoItemConfigPropertyParameters = @"parameters";
NSString * const kAlfrescoProcessConfigPropertyIsVisible = @"isVisible";
NSString * const kAlfrescoProfileConfigPropertyIsDefault = @"isDefault";
NSString * const kAlfrescoProfileConfigPropertyRootViewId = @"rootViewId";
NSString * const kAlfrescoRepositoryConfigPropertyShareURL = @"shareURL";
NSString * const kAlfrescoRepositoryConfigPropertyCMISURL = @"cmisURL";
NSString * const kAlfrescoSearchConfigPropertySearchableDocumentTypes = @"searchableDocumentTypes";
NSString * const kAlfrescoSearchConfigPropertySearchableFolderTypes = @"searchableFolderTypes";
NSString * const kAlfrescoTaskConfigPropertyIsVisible = @"isVisible";
NSString * const kAlfrescoViewConfigPropertyFormIdentifier = @"formIdentifier";
NSString * const kAlfrescoWorkflowConfigPropertyProcessConfig = @"processConfig";
NSString * const kAlfrescoWorkflowConfigPropertyTaskConfig = @"taskConfig";
NSString * const kAlfrescoModelDefinitionPropertyName = @"name";
NSString * const kAlfrescoModelDefinitionPropertyTitle = @"title";
NSString * const kAlfrescoModelDefinitionPropertySummary = @"summary";
NSString * const kAlfrescoModelDefinitionPropertyParent = @"parent";
NSString * const kAlfrescoModelDefinitionPropertyPropertyDefinitions = @"propertyDefinitions";
NSString * const kAlfrescoNodeTypeDefinitionPropertyMandatoryAspects = @"mandatoryAspects";
NSString * const kAlfrescoPropertyDefinitionPropertyName = @"name";
NSString * const kAlfrescoPropertyDefinitionPropertyTitle = @"title";
NSString * const kAlfrescoPropertyDefinitionPropertySummary = @"summary";
NSString * const kAlfrescoPropertyDefinitionPropertyType = @"type";
NSString * const kAlfrescoPropertyDefinitionPropertyIsRequired = @"isRequired";
NSString * const kAlfrescoPropertyDefinitionPropertyIsReadOnly = @"isReadOnly";
NSString * const kAlfrescoPropertyDefinitionPropertyIsMultiValued = @"isMultiValued";
NSString * const kAlfrescoPropertyDefinitionPropertyDefaultValue = @"defaultValue";
NSString * const kAlfrescoPropertyDefinitionPropertyAllowableValues = @"allowableValues";