com.boozallen.aiops.mda.metamodel.element.FrameworkElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foundation-mda Show documentation
Show all versions of foundation-mda Show documentation
Model driven architecture artifacts for aiSSEMBLE
The newest version!
package com.boozallen.aiops.mda.metamodel.element;
/*-
* #%L
* AIOps Foundation::AIOps MDA
* %%
* Copyright (C) 2021 Booz Allen
* %%
* This software package is licensed under the Booz Allen Public License. All Rights Reserved.
* #L%
*/
import com.boozallen.aiops.mda.generator.common.FrameworkEnum;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonPropertyOrder({ "names" })
public class FrameworkElement implements Framework {
private FrameworkEnum name;
/**
* {@inheritDoc}
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Override
public FrameworkEnum getName() {
return name;
}
/**
* Set the name of the framework to enable support
* @param name the name of the framework
*/
public void setName(FrameworkEnum name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy