# -*- coding: utf-8 -*- # # Copyright (C) 2015 GNS3 Technologies Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from ..config import Config import logging log = logging.getLogger(__name__) class BaseVM: def __init__(self, name, uuid, project, manager): self._name = name self._uuid = uuid self._project = project self._manager = manager self._config = Config.instance() #TODO: When delete release console ports @property def project(self): """Return VM current project""" return self._project @property def name(self): """ Returns the name for this VM. :returns: name """ return self._name @name.setter def name(self, new_name): """ Sets the name of this VM. :param new_name: name """ self._name = new_name @property def uuid(self): """ Returns the UUID for this VM. :returns: uuid (string) """ return self._uuid @property def manager(self): """ Returns the manager for this VM. :returns: instance of manager """ return self._manager def create(self): """ Creates the VM. """ return def start(self): """ Starts the VM process. """ raise NotImplementedError def stop(self): """ Starts the VM process. """ raise NotImplementedError