-
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.
- Loading branch information
Showing
20 changed files
with
6,599 additions
and
1,020 deletions.
There are no files selected for viewing
257 changes: 137 additions & 120 deletions
257
qa/common/src/main/java/org/eclipse/kapua/qa/common/BasicSteps.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
57 changes: 57 additions & 0 deletions
57
qa/common/src/main/java/org/eclipse/kapua/qa/common/cucumber/CucDeviceExtendedProperty.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,57 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2016, 2022 Eurotech and/or its affiliates and others | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Eurotech - initial API and implementation | ||
*******************************************************************************/ | ||
package org.eclipse.kapua.qa.common.cucumber; | ||
|
||
import org.eclipse.kapua.service.device.registry.DeviceExtendedProperty; | ||
|
||
/** | ||
* Cuc {@link DeviceExtendedProperty} implementation | ||
* | ||
* @since 2.0.0 | ||
*/ | ||
public class CucDeviceExtendedProperty { | ||
|
||
private String groupName; | ||
private String name; | ||
private String value; | ||
|
||
public CucDeviceExtendedProperty(String groupName, String name, String value) { | ||
this.groupName = groupName; | ||
this.name = name; | ||
this.value = value; | ||
} | ||
|
||
public String getGroupName() { | ||
return groupName; | ||
} | ||
|
||
public void setGroupName(String groupName) { | ||
this.groupName = groupName; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getValue() { | ||
return this.value; | ||
} | ||
|
||
public void setValue(String value) { | ||
this.value = value; | ||
} | ||
} |
Oops, something went wrong.