01: package org.andromda.cartridges.deployment.profile;
02:
03: import org.andromda.core.profile.Profile;
04:
05: /**
06: * Represents stereotypes and tagged values to be used with the deployment
07: * cartridge.
08: *
09: * @author <a href="http://www.mbohlen.de">Matthias Bohlen</a>
10: */
11: public class DeploymentProfile {
12:
13: private static final Profile profile = Profile.instance();
14:
15: /* ----------------- Stereotypes -------------------- */
16:
17: public static final String STEREOTYPE_MANIFEST = profile
18: .get("MANIFEST");
19: public static final String STEREOTYPE_WRAPS = profile.get("WRAPS");
20: }
|