package com.metaboss.sdlctools.models.metabossmodel.enterprisemodel;
/**
* OperationOutputMessage object instance interface.
*/
public interface OperationOutputMessage extends com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.AbstractMessageField {
/**
* Returns the value of reference operation.
* @return Value of reference operation.
*/
public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.AbstractOperation getOperation();
/**
* Sets the value of reference operation. See {@link #getOperation} for description
* on the reference.
* @param newValue New value to be set.
*/
public void setOperation(com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.AbstractOperation newValue);
}
|