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
Marcus Holl 60feb3409f
solman upload go the step (#2522)
Upload content into a transport request via SOLMAN

Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
2021-02-19 13:07:18 +01:00

20 lines
387 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 CTS
type Connection struct {
Endpoint string
User string
Password string
}