/*- * ============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.component; import org.openecomp.ncomp.core.Event; /** * * A representation of the model object 'Api Request'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest() * @model * @generated */ public interface ApiRequest extends Event { /** * Returns the value of the 'Component Name' attribute. * *

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

* * @return the value of the 'Component Name' attribute. * @see #setComponentName(String) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_ComponentName() * @model unique="false" * @generated */ String getComponentName(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getComponentName Component Name}' attribute. * * * @param value the new value of the 'Component Name' attribute. * @see #getComponentName() * @generated */ void setComponentName(String value); /** * Returns the value of the 'Resource Path' attribute. * *

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

* * @return the value of the 'Resource Path' attribute. * @see #setResourcePath(String) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_ResourcePath() * @model unique="false" * @generated */ String getResourcePath(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getResourcePath Resource Path}' attribute. * * * @param value the new value of the 'Resource Path' attribute. * @see #getResourcePath() * @generated */ void setResourcePath(String value); /** * Returns the value of the 'Transaction Id' attribute. * *

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

* * @return the value of the 'Transaction Id' attribute. * @see #setTransactionId(String) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_TransactionId() * @model unique="false" * @generated */ String getTransactionId(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getTransactionId Transaction Id}' attribute. * * * @param value the new value of the 'Transaction Id' attribute. * @see #getTransactionId() * @generated */ void setTransactionId(String value); /** * Returns the value of the 'Parent Transaction Id' attribute. * *

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

* * @return the value of the 'Parent Transaction Id' attribute. * @see #setParentTransactionId(String) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_ParentTransactionId() * @model unique="false" * @generated */ String getParentTransactionId(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getParentTransactionId Parent Transaction Id}' attribute. * * * @param value the new value of the 'Parent Transaction Id' attribute. * @see #getParentTransactionId() * @generated */ void setParentTransactionId(String value); /** * Returns the value of the 'Action' attribute. * *

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

* * @return the value of the 'Action' attribute. * @see #setAction(String) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_Action() * @model unique="false" * @generated */ String getAction(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getAction Action}' attribute. * * * @param value the new value of the 'Action' attribute. * @see #getAction() * @generated */ void setAction(String value); /** * Returns the value of the 'Duration' attribute. * *

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

* * @return the value of the 'Duration' attribute. * @see #setDuration(Long) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_Duration() * @model unique="false" * @generated */ Long getDuration(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getDuration Duration}' attribute. * * * @param value the new value of the 'Duration' attribute. * @see #getDuration() * @generated */ void setDuration(Long value); /** * Returns the value of the 'Status' attribute. * The literals are from the enumeration {@link org.openecomp.ncomp.component.ApiRequestStatus}. * *

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

* * @return the value of the 'Status' attribute. * @see org.openecomp.ncomp.component.ApiRequestStatus * @see #setStatus(ApiRequestStatus) * @see org.openecomp.ncomp.component.ComponentPackage#getApiRequest_Status() * @model unique="false" * @generated */ ApiRequestStatus getStatus(); /** * Sets the value of the '{@link org.openecomp.ncomp.component.ApiRequest#getStatus Status}' attribute. * * * @param value the new value of the 'Status' attribute. * @see org.openecomp.ncomp.component.ApiRequestStatus * @see #getStatus() * @generated */ void setStatus(ApiRequestStatus value); } // ApiRequest