107 lines
2.5 KiB
PHP
107 lines
2.5 KiB
PHP
<?
|
|
/**
|
|
* Copyright 2014 Openstack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
/**
|
|
* Interface IConsultant
|
|
*/
|
|
interface IConsultant extends IRegionalSupportedCompanyService {
|
|
|
|
const MarketPlaceType = 'Consultant';
|
|
const MarketPlaceGroupSlug = 'marketplace-consultant-administrators';
|
|
const MarketPlacePermissionSlug = 'MANAGE_MARKETPLACE_CONSULTANT';
|
|
|
|
//offices
|
|
/**
|
|
* @return IOffice[]
|
|
*/
|
|
public function getOffices();
|
|
/**
|
|
* @param IOffice $office
|
|
* @return void
|
|
*/
|
|
public function addOffice(IOffice $office);
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function clearOffices();
|
|
//clients
|
|
/**
|
|
* @return IConsultantClient[]
|
|
*/
|
|
public function getPreviousClients();
|
|
/**
|
|
* @param IConsultantClient $client
|
|
* @return void
|
|
*/
|
|
public function addPreviousClients(IConsultantClient $client);
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function clearClients();
|
|
// languages
|
|
/**
|
|
* @return ISpokenLanguage[]
|
|
*/
|
|
public function getSpokenLanguages();
|
|
|
|
/**
|
|
* @param ISpokenLanguage $language
|
|
* @return void
|
|
*/
|
|
public function addSpokenLanguages(ISpokenLanguage $language);
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function clearSpokenLanguages();
|
|
|
|
/**
|
|
* @return IConfigurationManagementType[]
|
|
*/
|
|
public function getConfigurationManagementExpertises();
|
|
|
|
public function addConfigurationManagementExpertise(IConfigurationManagementType $expertise);
|
|
|
|
public function clearConfigurationManagementExpertises();
|
|
|
|
/**
|
|
* @return IOpenStackComponent[]
|
|
*/
|
|
public function getExpertiseAreas();
|
|
/**
|
|
* @param IOpenStackComponent $component
|
|
* @return void
|
|
*/
|
|
public function addExpertiseArea(IOpenStackComponent $component);
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function clearExpertiseAreas();
|
|
|
|
/**
|
|
* @return IConsultantServiceOfferedType[]
|
|
*/
|
|
public function getServicesOffered();
|
|
|
|
/**
|
|
* @param IConsultantServiceOfferedType $service
|
|
* @param IRegion $region
|
|
* @return void
|
|
*/
|
|
public function addServiceOffered(IConsultantServiceOfferedType $service, IRegion $region);
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function clearServicesOffered();
|
|
|
|
}
|