/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * 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.ncomp.docker; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Container Memory Usage'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryUsage() * @model * @generated */ public interface ContainerMemoryUsage extends EObject { /** * Returns the value of the 'Memstats' containment reference. * *

* If the meaning of the 'Memstats' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Memstats' containment reference. * @see #setMemstats(ContainerMemoryStats) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryUsage_Memstats() * @model containment="true" * @generated */ ContainerMemoryStats getMemstats(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryUsage#getMemstats Memstats}' containment reference. * * * @param value the new value of the 'Memstats' containment reference. * @see #getMemstats() * @generated */ void setMemstats(ContainerMemoryStats value); /** * Returns the value of the 'Max usage' attribute. * *

* If the meaning of the 'Max usage' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Max usage' attribute. * @see #setMax_usage(int) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryUsage_Max_usage() * @model unique="false" * @generated */ int getMax_usage(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryUsage#getMax_usage Max usage}' attribute. * * * @param value the new value of the 'Max usage' attribute. * @see #getMax_usage() * @generated */ void setMax_usage(int value); /** * Returns the value of the 'Usage' attribute. * *

* If the meaning of the 'Usage' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Usage' attribute. * @see #setUsage(int) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryUsage_Usage() * @model unique="false" * @generated */ int getUsage(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryUsage#getUsage Usage}' attribute. * * * @param value the new value of the 'Usage' attribute. * @see #getUsage() * @generated */ void setUsage(int value); /** * Returns the value of the 'Failcnt' attribute. * *

* If the meaning of the 'Failcnt' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Failcnt' attribute. * @see #setFailcnt(int) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryUsage_Failcnt() * @model unique="false" * @generated */ int getFailcnt(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryUsage#getFailcnt Failcnt}' attribute. * * * @param value the new value of the 'Failcnt' attribute. * @see #getFailcnt() * @generated */ void setFailcnt(int value); /** * Returns the value of the 'Limit' attribute. * *

* If the meaning of the 'Limit' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Limit' attribute. * @see #setLimit(int) * @see org.openecomp.ncomp.docker.DockerPackage#getContainerMemoryUsage_Limit() * @model unique="false" * @generated */ int getLimit(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.ContainerMemoryUsage#getLimit Limit}' attribute. * * * @param value the new value of the 'Limit' attribute. * @see #getLimit() * @generated */ void setLimit(int value); } // ContainerMemoryUsage