File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
org/cryptomator/integrations/mount Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- import org .cryptomator .integrations .mount .MountProvider ;
1+ import org .cryptomator .integrations .mount .MountService ;
22import org .cryptomator .integrations .tray .TrayMenuController ;
33import org .cryptomator .integrations .autostart .AutoStartProvider ;
44import org .cryptomator .integrations .keychain .KeychainAccessProvider ;
1919
2020 uses AutoStartProvider ;
2121 uses KeychainAccessProvider ;
22- uses MountProvider ;
22+ uses MountService ;
2323 uses TrayIntegrationProvider ;
2424 uses TrayMenuController ;
2525 uses UiAppearanceProvider ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ default MountBuilder setMountpoint(Path mountPoint) {
5656 * @param mountFlags Mount flags
5757 * @return <code>this</code>
5858 * @throws UnsupportedOperationException If {@link MountFeature#MOUNT_FLAGS} is not supported
59- * @see MountProvider #getDefaultMountFlags(String)
59+ * @see MountService #getDefaultMountFlags(String)
6060 */
6161 @ Contract ("_ -> this" )
6262 default MountBuilder setMountFlags (String mountFlags ) {
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ public enum MountFeature {
1414 LOOPBACK_HOST_NAME ,
1515
1616 /**
17- * The provider supports {@link MountProvider #getDefaultLoopbackPort()}
17+ * The provider supports {@link MountService #getDefaultLoopbackPort()}
1818 * and the builder requires {@link MountBuilder#setLoopbackPort(int)}.
1919 */
2020 LOOPBACK_PORT ,
2121
2222 /**
23- * The provider supports {@link MountProvider #getDefaultMountFlags(String)}
23+ * The provider supports {@link MountService #getDefaultMountFlags(String)}
2424 * and the builder requires {@link MountBuilder#setMountFlags(String)}.
2525 */
2626 MOUNT_FLAGS ,
Original file line number Diff line number Diff line change 1313 *
1414 * @since 1.2.0
1515 */
16- public interface MountProvider {
16+ public interface MountService {
1717
1818 /**
1919 * Loads all supported mount providers.
2020 *
2121 * @return Stream of supported MountProviders (may be empty)
2222 */
23- static Stream <MountProvider > get () {
24- return IntegrationsLoader .loadAll (MountProvider .class ).filter (MountProvider ::isSupported );
23+ static Stream <MountService > get () {
24+ return IntegrationsLoader .loadAll (MountService .class ).filter (MountService ::isSupported );
2525 }
2626
2727 /**
You can’t perform that action at this time.
0 commit comments