else if (property.equals("System.Suspend") && command == OnOffType.OFF)
connector.systemSuspend();
else if (property.equals("System.Hibernate") && command == OnOffType.OFF)
connector.systemHibernate();
else if (property.equals("System.Reboot") && command == OnOffType.OFF)
connector.systemReboot();
else if (property.equals("Application.Volume"))
connector.applicationSetVolume(command.toString());
} catch (Exception e) {
logger.error("Error handling command", e);
}