Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 80d9a4b

Browse files
author
test@exmaple.com
committed
rm-vm
1 parent b70b962 commit 80d9a4b

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed

src/java/main/com/topcoder/direct/services/view/dto/project/planner/ProjectPlannerTransferDTO.java

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,20 @@
2424
* Version 1.2 - Topcoder - Remove JIRA Issues Related Functionality In Direct App v1.0
2525
* - remove JIRA related functionality
2626
* </p>
27-
*
28-
* <p>
29-
* Version 1.3 - Quick72Hrs!! Topcoder - Remove VM Management Feature In Direct App version 1.0
30-
* - remove VM related functionality
31-
* </p>
3227
*
3328
* @author GreatKevin, TCCoder
34-
* @version 1.3
29+
* @version 1.2
3530
* @since 1.0 (Module Assembly - TopCoder Cockpit Project Planner)
3631
*/
3732
public class ProjectPlannerTransferDTO implements Serializable {
3833

34+
/**
35+
* The flag to indicate whether to use VM for the development in the project.
36+
*
37+
* @since 1.1
38+
*/
39+
private boolean useVM;
40+
3941
/**
4042
* The contests in the project plan.
4143
*/
@@ -59,6 +61,26 @@ public void setContests(List<ProjectPlannerContestRow> contests) {
5961
this.contests = contests;
6062
}
6163

64+
/**
65+
* Gets the useVM flag.
66+
*
67+
* @return the useVM flag.
68+
* @since 1.1
69+
*/
70+
public boolean isUseVM() {
71+
return useVM;
72+
}
73+
74+
/**
75+
* Sets the useVM flag.
76+
*
77+
* @param useVM the useVM flag.
78+
* @since 1.1
79+
*/
80+
public void setUseVM(boolean useVM) {
81+
this.useVM = useVM;
82+
}
83+
6284
/**
6385
* This class represents a contest in the project plan.
6486
*/

0 commit comments

Comments
 (0)