-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Target type filter with drag and drop support Signed-off-by: Anand kumar <[email protected]> * Removed the unused enums and target type filter button class Signed-off-by: Anand kumar <[email protected]> * Resolved merge conflicts Signed-off-by: Anand kumar <[email protected]> * Fixed java doc issue with the method link in the comment Signed-off-by: Anand kumar <[email protected]> * Fixed the IN query overflow for target Type assignment Signed-off-by: Anand kumar <[email protected]> * Fixed Review comments Signed-off-by: Anand kumar <[email protected]>
- Loading branch information
Showing
38 changed files
with
1,404 additions
and
393 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -140,4 +140,4 @@ public boolean isMap() { | |
public String getFieldName() { | ||
return fieldName; | ||
} | ||
} | ||
} |
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
42 changes: 42 additions & 0 deletions
42
...ry-api/src/main/java/org/eclipse/hawkbit/repository/model/TargetTypeAssignmentResult.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,42 @@ | ||
/** | ||
* Copyright (c) 2021 Bosch.IO GmbH 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 | ||
*/ | ||
package org.eclipse.hawkbit.repository.model; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Result object for {@link TargetType} assignments. | ||
* | ||
*/ | ||
public class TargetTypeAssignmentResult extends AbstractAssignmentResult<Target> { | ||
|
||
private final TargetType targetType; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param alreadyAssigned | ||
* count of already assigned (ignored) elements | ||
* @param assigned | ||
* {@link List} of assigned {@link Target}s. | ||
* @param unassigned | ||
* {@link List} of unassigned {@link Target}s. | ||
* @param targetType | ||
* the assigned or unassigned tag | ||
*/ | ||
public TargetTypeAssignmentResult(final int alreadyAssigned, final List<? extends Target> assigned, | ||
final List<? extends Target> unassigned, final TargetType targetType) { | ||
super(alreadyAssigned, assigned, unassigned); | ||
this.targetType = targetType; | ||
} | ||
|
||
public TargetType getTargetType() { | ||
return targetType; | ||
} | ||
} |
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
Oops, something went wrong.