mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
60feb3409f
Upload content into a transport request via SOLMAN Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com>
20 lines
387 B
Go
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
|
|
}
|