git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
28 lines
974 B
PHP
28 lines
974 B
PHP
<?php
|
|
|
|
/* All the allowed webservice classes */
|
|
$WSClasses = array(
|
|
"contactManager",
|
|
"CMISService"
|
|
|
|
);
|
|
|
|
/* The classmap associative array. When you want to allow objects as a parameter for
|
|
* your webservice method. ie. saveObject($object). By default $object will now be
|
|
* a stdClass, but when you add a classname defined in the type description in the @param
|
|
* documentation tag and add your class to the classmap below, the object will be of the
|
|
* given type. Requires PHP 5.0.3+
|
|
*/
|
|
$WSStructures = array(
|
|
"contact" => "contact",
|
|
"address" => "address",
|
|
"cmisRepositoryEntryType" => "cmisRepositoryEntryType",
|
|
"cmisRepositoryInfoType" => "cmisRepositoryInfoType",
|
|
"cmisRepositoryCapabilitiesType" => "cmisRepositoryCapabilitiesType",
|
|
"cmisTypeDefinitionType" => "cmisTypeDefinitionType",
|
|
"cmisPropertyDefinitionType" => "cmisPropertyDefinitionType",
|
|
"cmisObjectType" => "cmisObjectType",
|
|
"cmisPropertiesType" => "cmisPropertiesType",
|
|
);
|
|
|
|
?>
|