/*- * ============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 fj.data.Either; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.openecomp.sdc.be.config.Configuration; 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.BaseType; 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; public interface IElementOperation { Either, ActionStatus> getAllResourceCategories(); Either, ActionStatus> getAllServiceCategories(); Either, ActionStatus> getAllProductCategories(); Either, ActionStatus> getAllTags(); Either, ActionStatus> getAllPropertyScopes(); List getAllArtifactTypes(); Either getDefaultHeatTimeout(); Either getCategoryData(String name, NodeTypeEnum type, Class clazz); Either getNewCategoryData(String name, NodeTypeEnum type, Class clazz); Either, ActionStatus> getResourceTypesMap(); Either createCategory(CategoryDefinition category, NodeTypeEnum nodeType); Either createCategory(CategoryDefinition category, NodeTypeEnum nodeType, boolean inTransaction); Either updateCategory(CategoryDefinition category, NodeTypeEnum nodeType); Either updateCategory(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 updateSubCategory(String subCategoryId, SubCategoryDefinition subCategory, NodeTypeEnum nodeType); Either updateSubCategory(String subCategoryId, SubCategoryDefinition subCategory, NodeTypeEnum nodeType, boolean inTransaction); Either, ActionStatus> getAllCategories(NodeTypeEnum nodeType, boolean inTransaction); List getServiceBaseTypes(String categoryName, String modelName); /** * Checks if a category requires a base type. * * @param categoryName the category name * @return {@code true} if a base type is required, {@code false} otherwise. */ boolean isBaseTypeRequired(String categoryName); String getDefaultBaseType(String categoryName); 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); }