/*- * ============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.openecomp.ncomp.core.NamedEntity; import java.util.Date; /** * * A representation of the model object 'Process'. * * * * docker container process table json * * { * "Titles" : [ * "USER","PID","%CPU","%MEM","VSZ","RSS","TTY","STAT","START","TIME","COMMAND" * ] * "Processes" : [ * [ * "root","13642","0.0","0.1","18172","3184","pts/0","Ss","17:03","0:00","/bin/bash" * ], * [ * "root","13895","0.0","0.0","4348","692","pts/0","S+","17:15","0:00","sleep 10" * ] * ], * } * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess() * @model * @generated */ public interface DockerProcess extends NamedEntity { /** * Returns the value of the 'User' attribute. * *

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

* * @return the value of the 'User' attribute. * @see #setUser(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_User() * @model unique="false" * @generated */ String getUser(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getUser User}' attribute. * * * @param value the new value of the 'User' attribute. * @see #getUser() * @generated */ void setUser(String value); /** * Returns the value of the 'Pid' attribute. * *

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

* * @return the value of the 'Pid' attribute. * @see #setPid(long) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Pid() * @model unique="false" * @generated */ long getPid(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getPid Pid}' attribute. * * * @param value the new value of the 'Pid' attribute. * @see #getPid() * @generated */ void setPid(long value); /** * Returns the value of the 'Cpu' attribute. * *

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

* * @return the value of the 'Cpu' attribute. * @see #setCpu(double) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Cpu() * @model unique="false" * @generated */ double getCpu(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getCpu Cpu}' attribute. * * * @param value the new value of the 'Cpu' attribute. * @see #getCpu() * @generated */ void setCpu(double value); /** * Returns the value of the 'Mem' attribute. * *

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

* * @return the value of the 'Mem' attribute. * @see #setMem(double) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Mem() * @model unique="false" * @generated */ double getMem(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getMem Mem}' attribute. * * * @param value the new value of the 'Mem' attribute. * @see #getMem() * @generated */ void setMem(double value); /** * Returns the value of the 'Vsz' attribute. * *

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

* * @return the value of the 'Vsz' attribute. * @see #setVsz(long) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Vsz() * @model unique="false" * @generated */ long getVsz(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getVsz Vsz}' attribute. * * * @param value the new value of the 'Vsz' attribute. * @see #getVsz() * @generated */ void setVsz(long value); /** * Returns the value of the 'Rss' attribute. * *

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

* * @return the value of the 'Rss' attribute. * @see #setRss(long) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Rss() * @model unique="false" * @generated */ long getRss(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getRss Rss}' attribute. * * * @param value the new value of the 'Rss' attribute. * @see #getRss() * @generated */ void setRss(long value); /** * Returns the value of the 'Tty' attribute. * *

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

* * @return the value of the 'Tty' attribute. * @see #setTty(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Tty() * @model unique="false" * @generated */ String getTty(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getTty Tty}' attribute. * * * @param value the new value of the 'Tty' attribute. * @see #getTty() * @generated */ void setTty(String value); /** * Returns the value of the 'Stat' attribute. * *

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

* * @return the value of the 'Stat' attribute. * @see #setStat(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Stat() * @model unique="false" * @generated */ String getStat(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getStat Stat}' attribute. * * * @param value the new value of the 'Stat' attribute. * @see #getStat() * @generated */ void setStat(String value); /** * Returns the value of the 'Start' attribute. * *

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

* * @return the value of the 'Start' attribute. * @see #setStart(Date) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Start() * @model unique="false" * @generated */ Date getStart(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getStart Start}' attribute. * * * @param value the new value of the 'Start' attribute. * @see #getStart() * @generated */ void setStart(Date value); /** * Returns the value of the 'Time Elapsed' attribute. * *

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

* * @return the value of the 'Time Elapsed' attribute. * @see #setTimeElapsed(long) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_TimeElapsed() * @model unique="false" * @generated */ long getTimeElapsed(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getTimeElapsed Time Elapsed}' attribute. * * * @param value the new value of the 'Time Elapsed' attribute. * @see #getTimeElapsed() * @generated */ void setTimeElapsed(long value); /** * Returns the value of the 'Command' attribute. * *

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

* * @return the value of the 'Command' attribute. * @see #setCommand(String) * @see org.openecomp.ncomp.docker.DockerPackage#getDockerProcess_Command() * @model unique="false" * @generated */ String getCommand(); /** * Sets the value of the '{@link org.openecomp.ncomp.docker.DockerProcess#getCommand Command}' attribute. * * * @param value the new value of the 'Command' attribute. * @see #getCommand() * @generated */ void setCommand(String value); } // DockerProcess