namespace OC\OCM\Model;
-use JsonSerializable;
use OCP\OCM\Exceptions\OCMArgumentException;
use OCP\OCM\Exceptions\OCMProviderException;
use OCP\OCM\IOCMProvider;
+use OCP\OCM\IOCMResource;
/**
* @since 28.0.0
*/
-class OCMProvider implements IOCMProvider, JsonSerializable {
+class OCMProvider implements IOCMProvider {
private bool $enabled = false;
private string $apiVersion = '';
private string $endPoint = '';
- /** @var OCMResource[] */
+ /** @var IOCMResource[] */
private array $resourceTypes = [];
/**
* @param bool $enabled
*
- * @return OCMProvider
+ * @return $this
*/
- public function setEnabled(bool $enabled): self {
+ public function setEnabled(bool $enabled): static {
$this->enabled = $enabled;
return $this;
/**
* @param string $apiVersion
*
- * @return OCMProvider
+ * @return $this
*/
- public function setApiVersion(string $apiVersion): self {
+ public function setApiVersion(string $apiVersion): static {
$this->apiVersion = $apiVersion;
return $this;
/**
* @param string $endPoint
*
- * @return OCMProvider
+ * @return $this
*/
- public function setEndPoint(string $endPoint): self {
+ public function setEndPoint(string $endPoint): static {
$this->endPoint = $endPoint;
return $this;
}
/**
- * @param OCMResource $resource
+ * @param IOCMResource $resource
*
* @return $this
*/
- public function addResourceType(OCMResource $resource): self {
+ public function addResourceType(IOCMResource $resource): static {
$this->resourceTypes[] = $resource;
return $this;
}
/**
- * @param OCMResource[] $resourceTypes
+ * @param IOCMResource[] $resourceTypes
*
- * @return OCMProvider
+ * @return $this
*/
- public function setResourceTypes(array $resourceTypes): self {
+ public function setResourceTypes(array $resourceTypes): static {
$this->resourceTypes = $resourceTypes;
return $this;
}
/**
- * @return OCMResource[]
+ * @return IOCMResource[]
*/
public function getResourceTypes(): array {
return $this->resourceTypes;
*
* @param array $data
*
- * @return self
+ * @return $this
* @throws OCMProviderException in case a descent provider cannot be generated from data
* @see self::jsonSerialize()
*/
- public function import(array $data): self {
+ public function import(array $data): static {
$this->setEnabled(is_bool($data['enabled'] ?? '') ? $data['enabled'] : false)
->setApiVersion((string)($data['apiVersion'] ?? ''))
->setEndPoint($data['endPoint'] ?? '');
namespace OC\OCM\Model;
-use JsonSerializable;
use OCP\OCM\IOCMResource;
/**
* @since 28.0.0
*/
-class OCMResource implements IOCMResource, JsonSerializable {
+class OCMResource implements IOCMResource {
private string $name = '';
/** @var string[] */
private array $shareTypes = [];
/**
* @param string $name
*
- * @return OCMResource
+ * @return $this
*/
- public function setName(string $name): self {
+ public function setName(string $name): static {
$this->name = $name;
return $this;
/**
* @param string[] $shareTypes
*
- * @return OCMResource
+ * @return $this
*/
- public function setShareTypes(array $shareTypes): self {
+ public function setShareTypes(array $shareTypes): static {
$this->shareTypes = $shareTypes;
return $this;
*
* @return $this
*/
- public function setProtocols(array $protocols): self {
+ public function setProtocols(array $protocols): static {
$this->protocols = $protocols;
return $this;
*
* @param array $data
*
- * @return self
+ * @return $this
* @see self::jsonSerialize()
*/
- public function import(array $data): self {
+ public function import(array $data): static {
return $this->setName((string)($data['name'] ?? ''))
->setShareTypes($data['shareTypes'] ?? [])
->setProtocols($data['protocols'] ?? []);
}
/**
- *
* @return array{
* name: string,
* shareTypes: string[],
namespace OCP\OCM;
-use OC\OCM\Model\OCMResource;
+use JsonSerializable;
use OCP\OCM\Exceptions\OCMArgumentException;
use OCP\OCM\Exceptions\OCMProviderException;
* @link https://github.com/cs3org/OCM-API/
* @since 28.0.0
*/
-interface IOCMProvider {
+interface IOCMProvider extends JsonSerializable {
/**
* enable OCM
*
* @param bool $enabled
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setEnabled(bool $enabled): self;
+ public function setEnabled(bool $enabled): static;
/**
* is set as enabled ?
*
* @param string $apiVersion
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setApiVersion(string $apiVersion): self;
+ public function setApiVersion(string $apiVersion): static;
/**
* returns API version
*
* @param string $endPoint
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setEndPoint(string $endPoint): self;
+ public function setEndPoint(string $endPoint): static;
/**
* get configured endpoint
/**
* add a single resource to the object
*
- * @param OCMResource $resource
+ * @param IOCMResource $resource
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function addResourceType(OCMResource $resource): self;
+ public function addResourceType(IOCMResource $resource): static;
/**
* set resources
*
- * @param OCMResource[] $resourceTypes
+ * @param IOCMResource[] $resourceTypes
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setResourceTypes(array $resourceTypes): self;
+ public function setResourceTypes(array $resourceTypes): static;
/**
* get all set resources
*
* @param array<string, int|string|bool|array> $data
*
- * @return self
+ * @return $this
* @throws OCMProviderException in case a descent provider cannot be generated from data
* @since 28.0.0
*/
- public function import(array $data): self;
+ public function import(array $data): static;
+
+ /**
+ * @return array{
+ * enabled: bool,
+ * apiVersion: string,
+ * endPoint: string,
+ * resourceTypes: array{
+ * name: string,
+ * shareTypes: string[],
+ * protocols: array<string, string>
+ * }[]
+ * }
+ * @since 28.0.0
+ */
+ public function jsonSerialize(): array;
}
namespace OCP\OCM;
+use JsonSerializable;
+
/**
* Model based on the Open Cloud Mesh Discovery API
*
* @link https://github.com/cs3org/OCM-API/
* @since 28.0.0
*/
-interface IOCMResource {
+interface IOCMResource extends JsonSerializable {
/**
* set name of the resource
*
* @param string $name
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setName(string $name): self;
+ public function setName(string $name): static;
/**
* get name of the resource
*
* @param string[] $shareTypes
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setShareTypes(array $shareTypes): self;
+ public function setShareTypes(array $shareTypes): static;
/**
* get share types
*
* @param array<string, string> $protocols
*
- * @return self
+ * @return $this
* @since 28.0.0
*/
- public function setProtocols(array $protocols): self;
+ public function setProtocols(array $protocols): static;
/**
* get configured protocols
*
* @param array $data
*
- * @return self
+ * @return $this
+ * @since 28.0.0
+ */
+ public function import(array $data): static;
+
+ /**
+ * @return array{
+ * name: string,
+ * shareTypes: string[],
+ * protocols: array<string, string>
+ * }
* @since 28.0.0
*/
- public function import(array $data): self;
+ public function jsonSerialize(): array;
}