[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-zusammen-lib / openecomp-zusammen-plugin / src / main / java / org / openecomp / core / zusammen / plugin / main / CassandraStateStorePluginImpl.java
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.core.zusammen.plugin.main;
18
19
20 import com.amdocs.zusammen.datatypes.SessionContext;
21 import com.amdocs.zusammen.datatypes.response.Response;
22 import com.amdocs.zusammen.plugin.statestore.cassandra.StateStoreImpl;
23 import com.amdocs.zusammen.plugin.statestore.cassandra.dao.types.ElementEntityContext;
24 import com.amdocs.zusammen.sdk.state.types.StateElement;
25 import org.openecomp.core.zusammen.plugin.dao.ElementRepositoryFactory;
26 import org.openecomp.core.zusammen.plugin.dao.types.ElementEntity;
27
28 import static org.openecomp.core.zusammen.plugin.ZusammenPluginUtil.getSpaceName;
29
30 public class CassandraStateStorePluginImpl extends StateStoreImpl {
31
32   @Override
33   public Response<Void> createElement(SessionContext context, StateElement element) {
34     ElementEntity elementEntity = new ElementEntity(element.getId());
35     elementEntity.setNamespace(element.getNamespace());
36
37     ElementRepositoryFactory.getInstance().createInterface(context)
38         .createNamespace(context,
39             new ElementEntityContext(getSpaceName(context, element.getSpace()),
40                 element.getItemId(), element.getVersionId()),
41             elementEntity);
42     // create element is done by collaboration store
43     return new Response(Void.TYPE);
44   }
45
46   @Override
47   public Response<Void> updateElement(SessionContext context, StateElement element) {
48     // done by collaboration store
49     return new Response(Void.TYPE);
50   }
51
52   @Override
53   public Response<Void> deleteElement(SessionContext context, StateElement element) {
54     // done by collaboration store
55     return new Response(Void.TYPE);
56   }
57
58 }