Libraries previously used group ID org.openecomp.ecompsdkos.
Also adds properties to an app property file to patch around a code problem.
Issue: PORTAL-19
Change-Id: Ic2f62b1127ad3d66e24448fdb9760d0c3d023bd0
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<!-- sdk-core -->
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-core</artifactId>
<version>${project.version}</version>
</dependency>
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<dependencies>
<!-- SDK components -->
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-core</artifactId>
<version>${epsdk.version}</version>
</dependency>
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-analytics</artifactId>
<version>${epsdk.version}</version>
</dependency>
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-workflow</artifactId>
<version>${epsdk.version}</version>
</dependency>
<!-- This is the Maven project object model (POM) file for the open-source SDK web app.
This is NOT the Portal - but it is developed and supported by the Portal team. -->
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-app-os</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>war</packaging>
</archive>
<overlays>
<overlay>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-app-overlay</artifactId>
</overlay>
</overlays>
<dependencies>
<!-- SDK overlay war -->
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-app-overlay</artifactId>
<version>${epsdk.version}</version>
<type>war</type>
</dependency>
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-app-common</artifactId>
<version>${epsdk.version}</version>
<type>jar</type>
</dependency>
<!-- SDK components -->
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-core</artifactId>
<version>${epsdk.version}</version>
</dependency>
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-analytics</artifactId>
<version>${epsdk.version}</version>
</dependency>
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-workflow</artifactId>
<version>${epsdk.version}</version>
</dependency>
# login settings
login_method_backdoor = backdoor
login_method_attribute_name = login_method
+
+# These properties will be removed after SingleSignOnController is cleaned
authentication_mechanism = BOTH
+login_method_csp = csp
+login_method_web_junction = web_junction
#login message
login.error.hrid.empty = Login failed, please contact system administrator.
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<!-- internal -->
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-fw</artifactId>
<version>${project.version}</version>
<exclusions>
/**
*
- * @returns RoleServiceImpl bean if LocalAccessCondition is true
+ * @return RoleServiceImpl bean if LocalAccessCondition is true
*/
@Bean
@Conditional(LocalAccessCondition.class)
/**
*
- * @returns RoleServiceCentralizedAccess bean if CentralAccessCondition is true
+ * @return RoleServiceCentralizedAccess bean if CentralAccessCondition is true
*/
@Bean
@Conditional(CentralAccessCondition.class)
/**
*
- * @returns LoginServiceImpl bean if LocalAccessCondition is true
+ * @return LoginServiceImpl bean if LocalAccessCondition is true
*/
@Bean
@Conditional(LocalAccessCondition.class)
/**
*
- * @returns LoginServiceCentralizedImpl bean if CentralAccessCondition is true
+ * @return LoginServiceCentralizedImpl bean if CentralAccessCondition is true
*/
@Bean
@Conditional(CentralAccessCondition.class)
/**
*
- * @returns UserProfileServiceImpl bean if LocalAccessCondition is true
+ * @return UserProfileServiceImpl bean if LocalAccessCondition is true
*/
@Bean
@Conditional(LocalAccessCondition.class)
/**
*
- * @returns returns UserProfileServiceCentalizedImpl bean if CentralAccessCondition is true
+ * @return returns UserProfileServiceCentalizedImpl bean if CentralAccessCondition is true
*/
@Bean
@Conditional(CentralAccessCondition.class)
/**
*
- * @returns returns ProfileServiceImpl bean if LocalAccessCondition is true
+ * @return returns ProfileServiceImpl bean if LocalAccessCondition is true
*/
@Bean
@Conditional(LocalAccessCondition.class)
/**
*
- * @returns returns ProfileServiceCentralizedImpl bean if CentralAccessCondition is true
+ * @return returns ProfileServiceCentralizedImpl bean if CentralAccessCondition is true
*/
@Bean
/**
*
- * @returns returns UrlAccessCentalizedImpl bean if CentralAccessCondition is true
+ * @return returns UrlAccessCentalizedImpl bean if CentralAccessCondition is true
*/
@Bean
@Conditional(CentralAccessCondition.class)
/**
*
- * @returns returns UrlAccessImpl bean if LocalAccessCondition is true
+ * @return returns UrlAccessImpl bean if LocalAccessCondition is true
*/
@Bean
@Conditional(LocalAccessCondition.class)
/**
*
- * @returns returns RestApiRequestBuilder bean if CentralAccessCondition is true
+ * @return returns RestApiRequestBuilder bean if CentralAccessCondition is true
*/
@Bean
@Conditional(CentralAccessCondition.class)
/**
*
* @param requestedLoginId
- * @return
+ * @return List of active roles
* @throws Exception
* Method getActiveRoles gets the list of active roles of application
*
*
* @param requestedLoginId
* @param code function code
- * @return
+ * @return RoleFunction of requested function code
* @throws Exception
* Method getRoleFunction returns RoleFunction of requested function code
*/
/**
*
* @param id orgUserID
- * @return
+ * @return User object
* @throws Exception
* Method getUser returns the User Object
*/
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
<dependencies>
<!-- sdk-core -->
<dependency>
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-core</artifactId>
<version>${project.version}</version>
</dependency>
<modelVersion>4.0.0</modelVersion>
<!-- ECOMP Portal SDK Maven parent project -->
- <groupId>org.openecomp.ecompsdkos</groupId>
+ <groupId>org.onap.portal.sdk</groupId>
<artifactId>epsdk-project</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>pom</packaging>