Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wp20ws_DragandDropToolSSH
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
softwarepraktikum
wp20ws_DragandDropToolSSH
Merge requests
!29
Resolve "Add rmdir command"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add rmdir command"
49-add-rmdir-command
into
master
Overview
0
Commits
3
Pipelines
0
Changes
4
Merged
Lukas Johannes Horn
requested to merge
49-add-rmdir-command
into
master
4 years ago
Overview
0
Commits
3
Pipelines
0
Changes
4
Expand
Closes
#49 (closed)
Edited
4 years ago
by
Lukas Johannes Horn
0
0
Merge request reports
Viewing commit
2c2a29c4
Prev
Next
Show latest version
4 files
+
34
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
2c2a29c4
Inserted rmdir in Facade Interface
· 2c2a29c4
Lukas Johannes Horn
authored
4 years ago
development/ssh/src/main/java/de/uniwue/swp/dragdropssh/ssh/results/RemoveDirectoryResult.java
0 → 100644
+
28
−
0
Options
package
de.uniwue.swp.dragdropssh.ssh.results
;
/**
* @author Lukas Johannes Horn
**/
public
class
RemoveDirectoryResult
extends
Result
{
private
String
name
;
/**
* Constructs a new RemoveDirectoryResult for a successful deletion
*
*/
public
RemoveDirectoryResult
(
String
name
)
{
super
(
Status
.
WORKED
);
this
.
name
=
name
;
}
/**
* Constructs a new result for a failed deletion which contains the exception message and class
*
* @param status of the deletion
* @param exceptionMessage message of the most significant exception
* @param exceptionName class name of the most significant exception
*/
public
RemoveDirectoryResult
(
Status
status
,
String
name
,
String
exceptionMessage
,
String
exceptionName
)
{
super
(
status
,
exceptionMessage
,
exceptionName
);
this
.
name
=
name
;
}
}
Loading