All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.lifecycle.model.LifecycleBinding Maven / Gradle / Ivy

There is a newer version: 3.0-alpha-2
Show newest version
/*
 * $Id$
 */

package org.apache.maven.lifecycle.model;

  //---------------------------------/
 //- Imported classes and packages -/
//---------------------------------/

import java.util.Date;

/**
 * Base-class for all lifecycle bindings.
 * 
 * @version $Revision$ $Date$
 */
public class LifecycleBinding implements java.io.Serializable {


    public String getId()
    {
        throw new UnsupportedOperationException( "Unsupported in base-class." );
    }
          
    public java.util.LinkedHashMap getOrderedPhaseMapping()
    {
        throw new UnsupportedOperationException( "Unsupported in base-class." );
    }
    
    public java.util.List getPhasesInOrder()
    {
        throw new UnsupportedOperationException( "Unsupported in base-class." );
    }
    
    public java.util.List getPhaseNamesInOrder()
    {
        throw new UnsupportedOperationException( "Unsupported in base-class." );
    }
          
    private String modelEncoding = "UTF-8";

    /**
     * Set an encoding used for reading/writing the model.
     *
     * @param modelEncoding the encoding used when reading/writing the model.
     */
    public void setModelEncoding( String modelEncoding )
    {
        this.modelEncoding = modelEncoding;
    }

    /**
     * @return the current encoding used when reading/writing this model.
     */
    public String getModelEncoding()
    {
        return modelEncoding;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy