-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extended DevicePackageManagementService API
Signed-off-by: coduz <alberto.codutti@eurotech.com>
- Loading branch information
Showing
14 changed files
with
635 additions
and
349 deletions.
There are no files selected for viewing
337 changes: 147 additions & 190 deletions
337
...va/org/eclipse/kapua/app/console/module/device/server/GwtDeviceManagementServiceImpl.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...java/org/eclipse/kapua/service/device/management/packages/model/DevicePackageOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2019 Eurotech and/or its affiliates and others | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Eurotech - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.kapua.service.device.management.packages.model; | ||
|
||
import org.eclipse.kapua.model.id.KapuaId; | ||
|
||
public interface DevicePackageOptions { | ||
|
||
void setTimeout(Long timeout); | ||
|
||
Long getTimeout(); | ||
|
||
KapuaId getForcedOperationId(); | ||
|
||
void setForcedOperationId(KapuaId forcedOperationId); | ||
} |
Oops, something went wrong.