mirror of
https://repository.entgra.net/community/product-iots.git
synced 2025-09-16 23:32:19 +00:00
fixed issues in API publishing
This commit is contained in:
parent
cacd5bf5ae
commit
566c5e5fb5
@ -329,7 +329,6 @@
|
||||
#end
|
||||
</inSequence>
|
||||
<outSequence>
|
||||
<class name="org.wso2.carbon.apimgt.usage.publisher.APIMgtResponseHandler"/>
|
||||
## check and set response caching
|
||||
#if($responseCacheEnabled)
|
||||
<cache scope="per-host" collector="true"/>
|
||||
@ -343,6 +342,7 @@
|
||||
#if($handlers.size() > 0)
|
||||
<handlers xmlns="http://ws.apache.org/ns/synapse">
|
||||
#foreach($handler in $handlers)
|
||||
#if($handler.className != 'org.wso2.carbon.apimgt.usage.publisher.APIMgtUsageHandler')
|
||||
<handler xmlns="http://ws.apache.org/ns/synapse" class="$handler.className">
|
||||
#if($handler.hasProperties())
|
||||
#set ($map = $handler.getProperties() )
|
||||
@ -352,6 +352,7 @@
|
||||
#end
|
||||
</handler>
|
||||
#end
|
||||
#end
|
||||
</handlers>
|
||||
#end
|
||||
#end
|
||||
|
||||
@ -489,6 +489,13 @@
|
||||
<exclude>jagg/jagg.jag</exclude>
|
||||
</excludes>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>
|
||||
../p2-profile-gen/target/wso2carbon-core-${carbon.kernel.version}/repository/deployment/server/jaggeryapps/api-publisher/
|
||||
</directory>
|
||||
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/jaggeryapps/api-publisher
|
||||
</outputDirectory>
|
||||
</fileSet>
|
||||
|
||||
<!--============ Added with API Features ===============-->
|
||||
<fileSet>
|
||||
@ -510,6 +517,12 @@
|
||||
<directory>src/api-resources/synapse-configs/default/sequences</directory>
|
||||
<outputDirectory>${pom.artifactId}-${pom.version}/repository/resources/apim-synapse-config/</outputDirectory>
|
||||
</fileSet>
|
||||
|
||||
<fileSet>
|
||||
<directory>src/api-resources/synapse-configs/default/sequences</directory>
|
||||
<outputDirectory>${pom.artifactId}-${pom.version}/repository/deployment/server/server/synapse-configs/default/sequences</outputDirectory>
|
||||
</fileSet>
|
||||
|
||||
<fileSet>
|
||||
<directory>src/api-resources/api_templates</directory>
|
||||
<outputDirectory>${pom.artifactId}-${pom.version}/repository/resources/api_templates</outputDirectory>
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
<DataSourceName>jdbc/WSO2AM_DB</DataSourceName>
|
||||
|
||||
<!-- This parameter is used when adding api management capability to other products like GReg, AS, DSS etc.-->
|
||||
<GatewayType>None</GatewayType>
|
||||
<GatewayType>Synapse</GatewayType>
|
||||
|
||||
<!-- This parameter is used to enable the securevault support when try to publish endpoint secured APIs. Values should be "true" or "false".
|
||||
By default secure vault is disabled.-->
|
||||
@ -310,12 +310,12 @@
|
||||
-ThriftServerHost - Allows to configure a hostname for the thrift server. It uses the carbon hostname by default.
|
||||
-->
|
||||
|
||||
<KeyValidatorClientType>ThriftClient</KeyValidatorClientType>
|
||||
<KeyValidatorClientType>WSClient</KeyValidatorClientType>
|
||||
<ThriftClientPort>10397</ThriftClientPort>
|
||||
<ThriftClientConnectionTimeOut>10000</ThriftClientConnectionTimeOut>
|
||||
<ThriftServerPort>10397</ThriftServerPort>
|
||||
<!--ThriftServerHost>localhost</ThriftServerHost-->
|
||||
<EnableThriftServer>true</EnableThriftServer>
|
||||
<EnableThriftServer>false</EnableThriftServer>
|
||||
|
||||
<!--
|
||||
Scope used for marking Application Tokens. If a token is generated with this scope, they will be treated as Application Access Tokens
|
||||
|
||||
@ -130,7 +130,7 @@
|
||||
</SupportedGrantType>
|
||||
<SupportedGrantType>
|
||||
<GrantTypeName>password</GrantTypeName>
|
||||
<GrantTypeHandlerImplClass>org.wso2.carbon.identity.oauth2.token.handlers.grant.PasswordGrantHandler</GrantTypeHandlerImplClass>
|
||||
<GrantTypeHandlerImplClass>org.wso2.carbon.device.mgt.oauth.extensions.handlers.grant.ExtendedPasswordGrantHandler</GrantTypeHandlerImplClass>
|
||||
</SupportedGrantType>
|
||||
<SupportedGrantType>
|
||||
<GrantTypeName>refresh_token</GrantTypeName>
|
||||
@ -157,7 +157,7 @@
|
||||
<OAuthCallbackHandlers>
|
||||
<OAuthCallbackHandler Class="org.wso2.carbon.device.mgt.oauth.extensions.handlers.DeviceMgtOAuthCallbackHandler"/>
|
||||
</OAuthCallbackHandlers>
|
||||
<OAuthScopeValidator class="org.wso2.carbon.device.mgt.oauth.extensions.validators.PermissionBasedScopeValidator"/>
|
||||
<OAuthScopeValidator class="org.wso2.carbon.identity.oauth2.validators.JDBCScopeValidator"/>
|
||||
<TokenValidators>
|
||||
<TokenValidator type="bearer" class="org.wso2.carbon.identity.oauth2.validators.DefaultOAuth2TokenValidator"/>
|
||||
</TokenValidators>
|
||||
|
||||
@ -514,6 +514,9 @@
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.apimgt:org.wso2.carbon.apimgt.store.feature:${carbon.api.mgt.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.apimgt:org.wso2.carbon.apimgt.publisher.feature:${carbon.api.mgt.version}
|
||||
</featureArtifactDef>
|
||||
<featureArtifactDef>
|
||||
org.wso2.carbon.apimgt:org.wso2.carbon.apimgt.authenticator.oidc.feature:${carbon.api.mgt.version}
|
||||
</featureArtifactDef>
|
||||
@ -1253,6 +1256,10 @@
|
||||
<id>org.wso2.carbon.apimgt.store.feature.group</id>
|
||||
<version>${carbon.api.mgt.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.wso2.carbon.apimgt.publisher.feature.group</id>
|
||||
<version>${carbon.api.mgt.version}</version>
|
||||
</feature>
|
||||
<feature>
|
||||
<id>org.wso2.carbon.apimgt.authenticator.oidc.feature.group</id>
|
||||
<version>${carbon.api.mgt.version}</version>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user