You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-file-share/src/main/java/com/azure/storage/file/share/models/CopyableFileSmbProperties.java
Copy file name to clipboardExpand all lines: sdk/storage/azure-storage-file-share/src/main/java/com/azure/storage/file/share/models/CopyableFileSmbPropertiesList.java
+48-6Lines changed: 48 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -25,15 +25,19 @@ public CopyableFileSmbPropertiesList() {
25
25
isSetChangedOn = false;
26
26
}
27
27
28
-
/***
29
-
* @return a flag indicating whether file attributes should be copied from source file.
28
+
/**
29
+
* Specifies whether file attributes should be copied from source file.
30
+
*
31
+
* @return {@code true} if file attributes should be copied.
30
32
*/
31
33
publicBooleanisFileAttributes() {
32
34
returnisSetFileAttributes;
33
35
34
36
}
35
37
36
38
/**
39
+
* Specify whether file attributes should be copied from source file.
40
+
*
37
41
* @param fileAttributes Flag indicating whether to copy file attributes from source file
38
42
* @return the updated {@link CopyableFileSmbPropertiesList}
39
43
*/
@@ -43,13 +47,17 @@ public CopyableFileSmbPropertiesList setFileAttributes(Boolean fileAttributes) {
43
47
}
44
48
45
49
/**
46
-
* @return a flag indicating whether created on timestamp should be copied from source file.
50
+
* Specifies whether created on timestamp should be copied from source file.
51
+
*
52
+
* @return {@code true} if created on timestamp should be copied.
47
53
*/
48
54
publicBooleanisCreatedOn() {
49
55
returnisSetCreatedOn;
50
56
}
51
57
52
58
/**
59
+
* Specify whether created on timestamp should be copied from source file.
60
+
*
53
61
* @param createdOn Flag indicating whether to copy created on timestamp from source file
54
62
* @return the updated {@link CopyableFileSmbPropertiesList}
55
63
*/
@@ -59,13 +67,17 @@ public CopyableFileSmbPropertiesList setCreatedOn(Boolean createdOn) {
59
67
}
60
68
61
69
/**
62
-
* @return a flag indicating whether last written on timestamp should be copied from source file.
70
+
* Specifies whether last written on timestamp should be copied from source file.
71
+
*
72
+
* @return {@code true} if last written on timestamp should be copied.
63
73
*/
64
74
publicBooleanisLastWrittenOn() {
65
75
returnisSetLastWrittenOn;
66
76
}
67
77
68
78
/**
79
+
* Specify whether last written on timestamp should be copied from source file.
80
+
*
69
81
* @param lastWrittenOn Flag indicating whether to copy last written on timestamp from source file
70
82
* @return the updated {@link CopyableFileSmbPropertiesList}
71
83
*/
@@ -75,13 +87,17 @@ public CopyableFileSmbPropertiesList setLastWrittenOn(Boolean lastWrittenOn) {
75
87
}
76
88
77
89
/**
78
-
* @return a flag indicating whether changed on timestamp should be copied from source file.
90
+
* Specifies whether changed on timestamp should be copied from source file.
91
+
*
92
+
* @return {@code true} if changed on timestamp should be copied.
79
93
*/
80
94
publicBooleanisChangedOn() {
81
95
returnisSetChangedOn;
82
96
}
83
97
84
98
/**
99
+
* Specify whether changed on timestamp should be copied from source file.
100
+
*
85
101
* @param changedOn Flag indicating whether to copy changed on timestamp from source file
86
102
* @return the updated {@link CopyableFileSmbPropertiesList}
87
103
*/
@@ -91,7 +107,33 @@ public CopyableFileSmbPropertiesList setChangedOn(Boolean changedOn) {
91
107
}
92
108
93
109
/**
94
-
* @return a list of the flag set to true
110
+
* Specifies whether all properties should be copied from source file.
111
+
*
112
+
* @return whether all properties should be copied from the source file.
0 commit comments