-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support custom service tags and service selection for adapters (#…
…2691) * feat: Support custom service tags and service selection for adapters * Remove empty scss file * Support service selection in runtime resolvable static properties * Fix checkstyle * add short comment to new ENV variable * feat: Add unit tests for CustomServiceTagResolver * add comment for clarification * add comment for clarification * Rename DeploymentConfiguration --------- Co-authored-by: bossenti <[email protected]> Co-authored-by: Philipp Zehnder <[email protected]>
- Loading branch information
1 parent
1082ac2
commit 0fdd15d
Showing
49 changed files
with
804 additions
and
196 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
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
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: 0 additions & 42 deletions
42
...src/main/java/org/apache/streampipes/connect/management/management/WorkerUrlProvider.java
This file was deleted.
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
50 changes: 50 additions & 0 deletions
50
...c/main/java/org/apache/streampipes/model/deployment/ExtensionDeploymentConfiguration.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,50 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package org.apache.streampipes.model.deployment; | ||
|
||
import org.apache.streampipes.model.extensions.svcdiscovery.SpServiceTag; | ||
|
||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
public class ExtensionDeploymentConfiguration { | ||
|
||
private Set<SpServiceTag> desiredServiceTags; | ||
private String selectedEndpointUrl; | ||
|
||
public ExtensionDeploymentConfiguration() { | ||
this.desiredServiceTags = new HashSet<>(); | ||
} | ||
|
||
public Set<SpServiceTag> getDesiredServiceTags() { | ||
return desiredServiceTags; | ||
} | ||
|
||
public void setDesiredServiceTags(Set<SpServiceTag> desiredServiceTags) { | ||
this.desiredServiceTags = desiredServiceTags; | ||
} | ||
|
||
public String getSelectedEndpointUrl() { | ||
return selectedEndpointUrl; | ||
} | ||
|
||
public void setSelectedEndpointUrl(String selectedEndpointUrl) { | ||
this.selectedEndpointUrl = selectedEndpointUrl; | ||
} | ||
} |
Oops, something went wrong.