-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2283 from arunans23/template-new
Improve invoke mediator to support connector response model
- Loading branch information
Showing
9 changed files
with
316 additions
and
51 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
44 changes: 44 additions & 0 deletions
44
modules/core/src/main/java/org/apache/synapse/data/connector/ConnectorResponse.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,44 @@ | ||
/* | ||
* Copyright (c) 2025, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. | ||
* | ||
* WSO2 LLC. 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.synapse.data.connector; | ||
|
||
import java.util.Map; | ||
|
||
public interface ConnectorResponse { | ||
|
||
void setPayload(Object payload); | ||
|
||
Object getPayload(); | ||
|
||
void setHeaders(Map<String, Object> headers); | ||
|
||
Map<String, Object> getHeaders(); | ||
|
||
void setAttributes(Map<String, Object> attributes); | ||
|
||
Map<String, Object> getAttributes(); | ||
|
||
void addAttribute(String key, Object value); | ||
|
||
void removeAttribute(String key); | ||
|
||
void addHeader(String key, String value); | ||
|
||
void removeHeader(String key); | ||
} |
79 changes: 79 additions & 0 deletions
79
modules/core/src/main/java/org/apache/synapse/data/connector/DefaultConnectorResponse.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,79 @@ | ||
/* | ||
* Copyright (c) 2025, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. | ||
* | ||
* WSO2 LLC. 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.synapse.data.connector; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
public class DefaultConnectorResponse implements ConnectorResponse { | ||
|
||
private Object payload; | ||
private Map<String, Object> headers = new HashMap<>(); | ||
private Map<String, Object> attributes = new HashMap<>(); | ||
|
||
@Override | ||
public void setPayload(Object payload) { | ||
this.payload = payload; | ||
} | ||
|
||
@Override | ||
public Object getPayload() { | ||
return payload; | ||
} | ||
|
||
@Override | ||
public void setHeaders(Map<String, Object> headers) { | ||
this.headers = headers; | ||
} | ||
|
||
@Override | ||
public Map<String, Object> getHeaders() { | ||
return headers; | ||
} | ||
|
||
@Override | ||
public void setAttributes(Map<String, Object> attributes) { | ||
this.attributes = attributes; | ||
} | ||
|
||
@Override | ||
public Map<String, Object> getAttributes() { | ||
return attributes; | ||
} | ||
|
||
@Override | ||
public void addAttribute(String key, Object value) { | ||
attributes.put(key, value); | ||
} | ||
|
||
@Override | ||
public void removeAttribute(String key) { | ||
attributes.remove(key); | ||
} | ||
|
||
@Override | ||
public void addHeader(String key, String value) { | ||
headers.put(key, value); | ||
} | ||
|
||
@Override | ||
public void removeHeader(String key) { | ||
headers.remove(key); | ||
} | ||
} |
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
Oops, something went wrong.