forked from kaltura/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kaltura#6960 from kaltura/master-merge-Mercury-13.…
…17.0 Master merge mercury 13.17.0
- Loading branch information
Showing
105 changed files
with
3,388 additions
and
536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Mercury-13.16.0 | ||
Mercury-13.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
140 changes: 140 additions & 0 deletions
140
alpha/apps/kaltura/lib/batch2/model/kClipConcatJobData.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
<?php | ||
/** | ||
* @package Core | ||
* @subpackage model.data | ||
*/ | ||
|
||
class kClipConcatJobData extends kJobData | ||
{ | ||
/**$destEntryId | ||
* @var string | ||
*/ | ||
private $destEntryId; | ||
|
||
/**$tempEntryId | ||
* @var string | ||
*/ | ||
private $tempEntryId; | ||
|
||
/**sourceEntryId | ||
* @var string | ||
*/ | ||
private $sourceEntryId; | ||
|
||
/** $partnerId | ||
* @var int | ||
*/ | ||
private $partnerId; | ||
|
||
/** $priority | ||
* @var int | ||
*/ | ||
private $priority; | ||
|
||
|
||
/** clip operations | ||
* @var array $operationAttributes | ||
*/ | ||
private $operationAttributes; | ||
|
||
/** | ||
* @return string $entryId | ||
*/ | ||
public function getDestEntryId() | ||
{ | ||
return $this->destEntryId; | ||
} | ||
|
||
/** | ||
* @param string $entryId | ||
*/ | ||
public function setDestEntryId($entryId) | ||
{ | ||
$this->destEntryId = $entryId; | ||
} | ||
|
||
/** | ||
* @return string $entryId | ||
*/ | ||
public function getTempEntryId() | ||
{ | ||
return $this->tempEntryId; | ||
} | ||
|
||
/** | ||
* @param string $sourceEntryId | ||
*/ | ||
public function setSourceEntryId($sourceEntryId) | ||
{ | ||
$this->sourceEntryId = $sourceEntryId; | ||
} | ||
|
||
/** | ||
* @return string $sourceEntryId | ||
*/ | ||
public function getSourceEntryId() | ||
{ | ||
return $this->sourceEntryId; | ||
} | ||
|
||
/** | ||
* @param string $entryId | ||
*/ | ||
public function setTempEntryId($entryId) | ||
{ | ||
$this->tempEntryId = $entryId; | ||
} | ||
|
||
/** | ||
* @return string $partnerId | ||
*/ | ||
public function getPartnerId() | ||
{ | ||
return $this->partnerId; | ||
} | ||
|
||
/** | ||
* @param string $partnerId | ||
*/ | ||
public function setPartnerId($partnerId) | ||
{ | ||
$this->partnerId = $partnerId; | ||
} | ||
|
||
|
||
/** | ||
* @return string $priority | ||
*/ | ||
public function getPriority() | ||
{ | ||
return $this->priority; | ||
} | ||
|
||
/** | ||
* @param string $priority | ||
*/ | ||
public function setPriority($priority) | ||
{ | ||
$this->priority = $priority; | ||
} | ||
|
||
|
||
/** | ||
* @return kOperationAttributes[] $operationAttributes | ||
*/ | ||
public function getOperationAttributes() | ||
{ | ||
return $this->operationAttributes; | ||
} | ||
|
||
/** | ||
* @param kOperationAttributes[] $operationAttributes | ||
*/ | ||
public function setOperationAttributes($operationAttributes) | ||
{ | ||
$this->operationAttributes = $operationAttributes; | ||
} | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.