1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace OCP\Federation;
- interface ICloudFederationFactory {
-
- public function getCloudFederationShare($shareWith, $name, $description, $providerId, $owner, $ownerDisplayName, $sharedBy, $sharedByDisplayName, $sharedSecret, $shareType, $resourceType);
-
- public function getCloudFederationNotification();
- }
|