mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
6151f36d88
* Remove --backend-type * Delete CTS in isChangeDevelopment and change Dockerimage of CM-Client * fix groovy unit tests * another fix of groovy unit tests * try to fix import of fork for Jenkins-Testing * add workflow to create Go Binary for Jenkins-Server * Change RepoOwner to test in Fork * remove previous changes * adjust docker image for TransportRequestCreate and Release * Remove CTS from Documentation Co-authored-by: Thorsten Duda <thorsten.duda@sap.com>
20 lines
400 B
Go
20 lines
400 B
Go
package solman
|
|
|
|
import (
|
|
"github.com/SAP/jenkins-library/pkg/command"
|
|
)
|
|
|
|
// Exec interface collecting everything which is execution related
|
|
// and needed in the context of a SOLMAN upload.
|
|
type Exec interface {
|
|
command.ExecRunner
|
|
GetExitCode() int
|
|
}
|
|
|
|
// Connection Everything we need for connecting to Solution Manager
|
|
type Connection struct {
|
|
Endpoint string
|
|
User string
|
|
Password string
|
|
}
|