CartridgeArtifact.java :  » UML » AndroMDA-3.2 » org » andromda » maven » plugin » cartridge » Java Open Source

Java Open Source » UML » AndroMDA 3.2 
AndroMDA 3.2 » org » andromda » maven » plugin » cartridge » CartridgeArtifact.java
package org.andromda.maven.plugin.cartridge;



/**
 * Represents a cartridge library to be included in a cartridge.
 *
 * @author Chad Brandon
 */
public class CartridgeArtifact
{
    private String artifactId;

    /**
     * Gets the artifactId of this cartridge library.
     *
     * @return Returns the artifactId.
     */
    public String getArtifactId()
    {
        return artifactId;
    }

    private String groupId;

    /**
     * Gets the groupId of this cartridge library.
     *
     * @return Returns the groupId.
     */
    public String getGroupId()
    {
        return groupId;
    }

    private String type;

    /**
     * Gets the type of this artifact.
     *
     * @return Returns the type.
     */
    public String getType()
    {
        return type;
    }

    private String path;

    /**
     * Gets the relative path the library will reside within the cartridge.
     *
     * @return Returns the path.
     */
    public String getPath()
    {
        return path;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.