Migration to AGL gerrit (update go import)
[src/xds/xds-agent.git] / lib / agent / project-interface.go
index 867c588..4d61819 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2017 "IoT.bzh"
+ * Copyright (C) 2017-2018 "IoT.bzh"
  * Author Sebastien Douheret <sebastien@iot.bzh>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
 
 package agent
 
-import "github.com/iotbzh/xds-agent/lib/xaapiv1"
+import "gerrit.automotivelinux.org/gerrit/src/xds/xds-agent/lib/xaapiv1"
 
 // IPROJECT Project interface
 type IPROJECT interface {
-       Add(cfg xaapiv1.ProjectConfig) (*xaapiv1.ProjectConfig, error)          // Add a new project
-       Setup(prj xaapiv1.ProjectConfig) (*xaapiv1.ProjectConfig, error) // Local setup of the project
-       Delete() error                                                      // Delete a project
-       GetProject() *xaapiv1.ProjectConfig                                   // Get project public configuration
-       Update(prj xaapiv1.ProjectConfig) (*xaapiv1.ProjectConfig, error)       // Update project configuration
-       GetServer() *XdsServer                                              // Get XdsServer that holds this project
-       Sync() error                                                        // Force project files synchronization
-       IsInSync() (bool, error)                                            // Check if project files are in-sync
+       Add(cfg xaapiv1.ProjectConfig) (*xaapiv1.ProjectConfig, error)    // Add a new project
+       Setup(prj xaapiv1.ProjectConfig) (*xaapiv1.ProjectConfig, error)  // Local setup of the project
+       Delete() error                                                    // Delete a project
+       GetProject() *xaapiv1.ProjectConfig                               // Get project public configuration
+       Update(prj xaapiv1.ProjectConfig) (*xaapiv1.ProjectConfig, error) // Update project configuration
+       GetServer() *XdsServer                                            // Get XdsServer that holds this project
+       Sync() error                                                      // Force project files synchronization
+       IsInSync() (bool, error)                                          // Check if project files are in-sync
 }