/*- * ============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.openstack.ceilometer; import org.openecomp.ncomp.openstack.compute.Link; import org.openecomp.ncomp.openstack.compute.Metadata; import java.util.Date; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Resource'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource() * @model * @generated */ public interface CeilometerResource extends EObject { /** * Returns the value of the 'Id' attribute. * *

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

* * @return the value of the 'Id' attribute. * @see #setId(String) * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_Id() * @model unique="false" * @generated */ String getId(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.ceilometer.CeilometerResource#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the 'User id' attribute. * *

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

* * @return the value of the 'User id' attribute. * @see #setUser_id(String) * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_User_id() * @model unique="false" * @generated */ String getUser_id(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.ceilometer.CeilometerResource#getUser_id User id}' attribute. * * * @param value the new value of the 'User id' attribute. * @see #getUser_id() * @generated */ void setUser_id(String value); /** * Returns the value of the 'Project id' attribute. * *

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

* * @return the value of the 'Project id' attribute. * @see #setProject_id(String) * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_Project_id() * @model unique="false" * @generated */ String getProject_id(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.ceilometer.CeilometerResource#getProject_id Project id}' attribute. * * * @param value the new value of the 'Project id' attribute. * @see #getProject_id() * @generated */ void setProject_id(String value); /** * Returns the value of the 'First sample timestamp' attribute. * *

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

* * @return the value of the 'First sample timestamp' attribute. * @see #setFirst_sample_timestamp(Date) * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_First_sample_timestamp() * @model unique="false" * @generated */ Date getFirst_sample_timestamp(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.ceilometer.CeilometerResource#getFirst_sample_timestamp First sample timestamp}' attribute. * * * @param value the new value of the 'First sample timestamp' attribute. * @see #getFirst_sample_timestamp() * @generated */ void setFirst_sample_timestamp(Date value); /** * Returns the value of the 'Last sample timestamp' attribute. * *

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

* * @return the value of the 'Last sample timestamp' attribute. * @see #setLast_sample_timestamp(Date) * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_Last_sample_timestamp() * @model unique="false" * @generated */ Date getLast_sample_timestamp(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.ceilometer.CeilometerResource#getLast_sample_timestamp Last sample timestamp}' attribute. * * * @param value the new value of the 'Last sample timestamp' attribute. * @see #getLast_sample_timestamp() * @generated */ void setLast_sample_timestamp(Date value); /** * Returns the value of the 'Links' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.openstack.compute.Link}. * *

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

* * @return the value of the 'Links' containment reference list. * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_Links() * @model containment="true" * @generated */ EList getLinks(); /** * Returns the value of the 'Metadata' containment reference. * *

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

* * @return the value of the 'Metadata' containment reference. * @see #setMetadata(Metadata) * @see org.openecomp.ncomp.openstack.ceilometer.CeilometerPackage#getCeilometerResource_Metadata() * @model containment="true" * @generated */ Metadata getMetadata(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.ceilometer.CeilometerResource#getMetadata Metadata}' containment reference. * * * @param value the new value of the 'Metadata' containment reference. * @see #getMetadata() * @generated */ void setMetadata(Metadata value); } // CeilometerResource