--- /dev/null
+/*\r
+ * Copyright 2017 Huawei Technologies Co., Ltd.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+package org.onap.vfc.nfvo.resmanagement.service.dao.impl;\r
+\r
+import java.util.List;\r
+import java.util.Map;\r
+\r
+import org.onap.vfc.nfvo.resmanagement.service.dao.inf.NsDao;\r
+import org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity;\r
+import org.onap.vfc.nfvo.resmanagement.service.mapper.NsEntityMapper;\r
+\r
+public class NsDaoImpl extends AbstractDao implements NsDao {\r
+\r
+ @Override\r
+ public NsEntity getNs(String id) {\r
+ return getMapperManager(NsEntityMapper.class).selectByPrimaryKey(id);\r
+ }\r
+\r
+ @Override\r
+ public List<NsEntity> getAllNs(Map<String, Object> condition) {\r
+ return getMapperManager(NsEntityMapper.class).getAllNs(condition);\r
+ }\r
+\r
+ @Override\r
+ public int addNs(NsEntity nsEntity) {\r
+ return getMapperManager(NsEntityMapper.class).insert(nsEntity);\r
+ }\r
+\r
+ @Override\r
+ public int updateNs(NsEntity nsEntity) {\r
+ return getMapperManager(NsEntityMapper.class).updateByPrimaryKey(nsEntity);\r
+ }\r
+\r
+ @Override\r
+ public int deleteNsById(String id) {\r
+ return getMapperManager(NsEntityMapper.class).deleteByPrimaryKey(id);\r
+ }\r
+}\r
--- /dev/null
+/*\r
+ * Copyright 2017 Huawei Technologies Co., Ltd.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+package org.onap.vfc.nfvo.resmanagement.service.dao.inf;\r
+\r
+import java.util.List;\r
+import java.util.Map;\r
+\r
+import org.onap.vfc.nfvo.resmanagement.service.entity.NsEntity;\r
+\r
+public interface NsDao {\r
+\r
+ NsEntity getNs(String id);\r
+\r
+ List<NsEntity> getAllNs(Map<String, Object> condition);\r
+\r
+ int addNs(NsEntity nsEntity);\r
+\r
+ int updateNs(NsEntity nsEntity);\r
+\r
+ int deleteNsById(String id);\r
+}\r