Beispiel #1
0
 public boolean definesMRJob() {
   return lps.getDefinesMRJob();
 }
Beispiel #2
0
 public boolean getProducesIntermediateOutput() {
   return lps.getProducesIntermediateOutput();
 }
Beispiel #3
0
 public boolean isAligner() {
   return lps.isAligner();
 }
Beispiel #4
0
 /**
  * Method to get the compatible job type for the LOP
  *
  * @return
  */
 public int getCompatibleJobs() {
   return lps.getCompatibleJobs();
 }
Beispiel #5
0
 /** Method to find if the lop breaks alignment */
 public boolean getBreaksAlignment() {
   return lps.getBreaksAlignment();
 }
Beispiel #6
0
 /**
  * Method to get the execution type (CP or MR) of LOP
  *
  * @return
  */
 public ExecType getExecType() {
   return lps.getExecType();
 }
Beispiel #7
0
 /**
  * Method to get the location property of LOP
  *
  * @return
  */
 public ExecLocation getExecLocation() {
   return lps.getExecLocation();
 }
Beispiel #8
0
 public void setLevel() {
   lps.setLevel(inputs);
 }
Beispiel #9
0
 public int getLevel() {
   return lps.getLevel();
 }
Beispiel #10
0
 /** Method to return the ID of LOP */
 public long getID() {
   return lps.getID();
 }