aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/vfc/components/vfc-zte-vnfm-driver/requirements.yaml
AgeCommit message (Expand)AuthorFilesLines
2021-10-15[COMMON] Bump ONAP versionSylvain Desbureaux1-2/+3
2021-03-24[DOC][COMMON] Prepare Honolulu releaseSylvain Desbureaux1-2/+2
2020-11-30[COMMON][DOC] Bump version GuilinSylvain Desbureaux1-2/+2
2020-11-24[VFC] Uses new tpls for repos / imagesSylvain Desbureaux1-0/+21
ef='#n98'>98 99 100
/*-
 * ============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.ui.model;

import org.openecomp.sdc.be.datatypes.components.ServiceMetadataDataDefinition;
import org.openecomp.sdc.be.model.category.CategoryDefinition;

import java.util.List;

public class UiServiceMetadata extends UiComponentMetadata {
	
	private String distributionStatus;
	private Boolean ecompGeneratedNaming;
	private String namingPolicy;
	private String serviceType;
	private String serviceRole;
	private String environmentContext;
	private String instantiationType;

	public UiServiceMetadata(List<CategoryDefinition> categories, ServiceMetadataDataDefinition metadata) {
		super(categories, metadata);
		this.distributionStatus = metadata.getDistributionStatus();
		this.ecompGeneratedNaming = metadata.isEcompGeneratedNaming();
		this.namingPolicy = metadata.getNamingPolicy();
		this.serviceType = metadata.getServiceType();
		this.serviceRole = metadata.getServiceRole();
		this.environmentContext = metadata.getEnvironmentContext();
		this.instantiationType = metadata.getInstantiationType();
	}
	
	public String getDistributionStatus() {
		return distributionStatus;
	}

    public void setDistributionStatus(String distributionStatus) {
        this.distributionStatus = distributionStatus;
    }

    public Boolean getEcompGeneratedNaming() {
        return ecompGeneratedNaming;
    }

    public void setEcompGeneratedNaming(Boolean ecompGeneratedNaming) {
        this.ecompGeneratedNaming = ecompGeneratedNaming;
    }

    public String getNamingPolicy() {
        return namingPolicy;
    }

    public void setNamingPolicy(String namingPolicy) {
        this.namingPolicy = namingPolicy;
    }

    public String getServiceType() {
        return serviceType;
    }

    public void setServiceType(String serviceType) {
        this.serviceType = serviceType;
    }

    public String getServiceRole() {
        return serviceRole;
    }

	public void setServiceRole(String serviceRole) {
		this.serviceRole = serviceRole;
	}

	public String getInstantiationType() {
		return instantiationType;
	}

	public void setInstantiationType(String instantiationType) {
		this.instantiationType = instantiationType;
	}

    public String getEnvironmentContext() { return environmentContext; }

    public void setEnvironmentContext(String environmentContext) { this.environmentContext = environmentContext; }
}