Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-session-lib / src / main / java / org / openecomp / sdc / common / session / impl / SessionContextProviderFactoryImpl.java
@@ -7,9 +7,9 @@
  * Licensed 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.
  * ============LICENSE_END=========================================================
  */
 
-package org.openecomp.sdcrests.vsp.rest.mapping;
+package org.openecomp.sdc.common.session.impl;
 
-import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
-import org.openecomp.sdcrests.mapping.MappingBase;
-import org.openecomp.sdcrests.vendorsoftwareproducts.types.VspCreationDto;
+import org.openecomp.sdc.common.session.SessionContextProvider;
+import org.openecomp.sdc.common.session.SessionContextProviderFactory;
+
+public class SessionContextProviderFactoryImpl extends SessionContextProviderFactory {
+  private static final SessionContextProvider INSTANCE = new AsdcSessionContextProvider();
 
-public class MapVspDetailsToVspCreationDto extends MappingBase<VspDetails, VspCreationDto> {
   @Override
-  public void doMapping(VspDetails source, VspCreationDto target) {
-    target.setVspId(source.getId());
+  public SessionContextProvider createInterface() {
+    return INSTANCE;
   }
 }