1
1
/*
2
- * Copyright 2015 the original author or authors.
2
+ * Copyright 2015-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
19
19
import java .util .Date ;
20
20
21
21
import org .springframework .beans .factory .annotation .Autowired ;
22
- import org .springframework .shell .core .CommandMarker ;
23
- import org .springframework .shell .core .annotation .CliCommand ;
24
- import org .springframework .shell .core .annotation .CliOption ;
25
- import org .springframework .stereotype .Component ;
22
+ import org .springframework .shell .command .annotation .Command ;
23
+ import org .springframework .shell .command .annotation .Option ;
26
24
27
- @ Component
28
- public class CdPlayerCommands implements CommandMarker {
25
+ @ Command
26
+ public class CdPlayerCommands {
29
27
30
28
@ Autowired
31
29
private CdPlayer cdPlayer ;
32
30
33
31
@ Autowired
34
32
private Library library ;
35
33
36
- @ CliCommand ( value = "cd lcd" , help = "Prints CD player lcd info" )
34
+ @ Command ( command = "cd lcd" , description = "Prints CD player lcd info" )
37
35
public String lcd () {
38
36
return cdPlayer .getLdcStatus ();
39
37
}
40
38
41
- @ CliCommand ( value = "cd library" , help = "List user CD library" )
39
+ @ Command ( command = "cd library" , description = "List user CD library" )
42
40
public String library () {
43
41
SimpleDateFormat format = new SimpleDateFormat ("mm:ss" );
44
42
StringBuilder buf = new StringBuilder ();
@@ -53,8 +51,8 @@ public String library() {
53
51
return buf .toString ();
54
52
}
55
53
56
- @ CliCommand ( value = "cd load" , help = "Load CD into player" )
57
- public String load (@ CliOption ( key = {"" , "index" }) int index ) {
54
+ @ Command ( command = "cd load" , description = "Load CD into player" )
55
+ public String load (@ Option ( longNames = {"" , "index" }) int index ) {
58
56
StringBuilder buf = new StringBuilder ();
59
57
try {
60
58
Cd cd = library .getCollection ().get (index );
@@ -66,32 +64,32 @@ public String load(@CliOption(key = {"", "index"}) int index) {
66
64
return buf .toString ();
67
65
}
68
66
69
- @ CliCommand ( value = "cd play" , help = "Press player play button" )
67
+ @ Command ( command = "cd play" , description = "Press player play button" )
70
68
public void play () {
71
69
cdPlayer .play ();
72
70
}
73
71
74
- @ CliCommand ( value = "cd stop" , help = "Press player stop button" )
72
+ @ Command ( command = "cd stop" , description = "Press player stop button" )
75
73
public void stop () {
76
74
cdPlayer .stop ();
77
75
}
78
76
79
- @ CliCommand ( value = "cd pause" , help = "Press player pause button" )
77
+ @ Command ( command = "cd pause" , description = "Press player pause button" )
80
78
public void pause () {
81
79
cdPlayer .pause ();
82
80
}
83
81
84
- @ CliCommand ( value = "cd eject" , help = "Press player eject button" )
82
+ @ Command ( command = "cd eject" , description = "Press player eject button" )
85
83
public void eject () {
86
84
cdPlayer .eject ();
87
85
}
88
86
89
- @ CliCommand ( value = "cd forward" , help = "Press player forward button" )
87
+ @ Command ( command = "cd forward" , description = "Press player forward button" )
90
88
public void forward () {
91
89
cdPlayer .forward ();
92
90
}
93
91
94
- @ CliCommand ( value = "cd back" , help = "Press player back button" )
92
+ @ Command ( command = "cd back" , description = "Press player back button" )
95
93
public void back () {
96
94
cdPlayer .back ();
97
95
}
0 commit comments