1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/transportrequest/solman/common.go
Julian Schmitt 6151f36d88
Implement Release 3.0.0 of CM-Client (#3664)
* 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>
2022-04-05 12:33:19 +02:00

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
}