TYPO3 CMS  TYPO3_6-2
MetaDataInterface.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\Flow\Package;
3 
4 /* *
5  * This script belongs to the TYPO3 Flow framework. *
6  * *
7  * It is free software; you can redistribute it and/or modify it under *
8  * the terms of the GNU Lesser General Public License, either version 3 *
9  * of the License, or (at your option) any later version. *
10  * *
11  * The TYPO3 project - inspiring people to share! *
12  * */
13 
18 interface MetaDataInterface {
19 
20  const CONSTRAINT_TYPE_DEPENDS = 'depends';
21  const CONSTRAINT_TYPE_CONFLICTS = 'conflicts';
22  const CONSTRAINT_TYPE_SUGGESTS = 'suggests';
23 
24  const PARTY_TYPE_PERSON = 'person';
25  const PARTY_TYPE_COMPANY = 'company';
26 
27  const CONSTRAINT_SCOPE_PACKAGE = 'package';
28  const CONSTRAINT_SCOPE_SYSTEM = 'system';
29 
33  public function getPackageKey();
34 
38  public function getVersion();
39 
43  public function getDescription();
44 
48  public function getCategories();
49 
53  public function getParties();
54 
59  public function getConstraintsByType($constraintType);
60 
66  public function getConstraints();
67 }
68 ?>