/*- * ============LICENSE_START======================================================= * SDC * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * 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. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.openecomp.sdc.be.model.operations.api; import java.util.List; import java.util.Map; import org.openecomp.sdc.be.dao.api.ActionStatus; import org.openecomp.sdc.be.dao.graph.datatype.GraphNode; import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum; import org.openecomp.sdc.be.model.ArtifactType; import org.openecomp.sdc.be.model.PropertyScope; import org.openecomp.sdc.be.model.Tag; import org.openecomp.sdc.be.model.category.CategoryDefinition; import org.openecomp.sdc.be.model.category.GroupingDefinition; import org.openecomp.sdc.be.model.category.SubCategoryDefinition; import org.openecomp.sdc.be.resources.data.CategoryData; import fj.data.Either; public interface IElementOperation { Either, ActionStatus> getAllResourceCategories(); Either, ActionStatus> getAllServiceCategories(); Either, ActionStatus> getAllProductCategories(); public Either, ActionStatus> getAllTags(); public Either, ActionStatus> getAllPropertyScopes(); public Either, ActionStatus> getAllArtifactTypes(); public Either, ActionStatus> getAllDeploymentArtifactTypes(); public Either getDefaultHeatTimeout(); public Either getCategoryData(String name, NodeTypeEnum type, Class clazz); public Either getNewCategoryData(String name, NodeTypeEnum type, Class clazz); public Either, ActionStatus> getResourceTypesMap(); Either createCategory(CategoryDefinition category, NodeTypeEnum nodeType); Either createCategory(CategoryDefinition category, NodeTypeEnum nodeType, boolean inTransaction); Either deleteCategory(NodeTypeEnum nodeType, String categoryId); Either deleteSubCategory(NodeTypeEnum nodeType, String subCategoryId); Either isCategoryUniqueForType(NodeTypeEnum nodeType, String normalizedName); Either createSubCategory(String categoryId, SubCategoryDefinition subCategory, NodeTypeEnum nodeType); Either createSubCategory(String categoryId, SubCategoryDefinition subCategory, NodeTypeEnum nodeType, boolean inTransaction); Either, ActionStatus> getAllCategories(NodeTypeEnum nodeType, boolean inTransaction); Either getCategory(NodeTypeEnum nodeType, String categoryId); Either getSubCategoryUniqueForType(NodeTypeEnum nodeType, String normalizedName); Either isSubCategoryUniqueForCategory(NodeTypeEnum nodeType, String subCategoryNormName, String parentCategoryId); Either createGrouping(String subCategoryId, GroupingDefinition grouping, NodeTypeEnum nodeType); Either deleteGrouping(NodeTypeEnum nodeType, String groupingId); Either getSubCategory(NodeTypeEnum nodeType, String subCategoryId); Either isGroupingUniqueForSubCategory(NodeTypeEnum nodeType, String groupingNormName, String parentSubCategoryId); Either getGroupingUniqueForType(NodeTypeEnum nodeType, String groupingNormalizedName); }