/plugin-module-codegen-api/src/main/java/com/atlassian/plugins/codegen/AmpsSystemPropertyVariable.java
https://bitbucket.org/mmeinhold/amps · Java · 24 lines · 17 code · 3 blank · 4 comment · 0 complexity · c2188e8b7d1a02eef5d32178102e385e MD5 · raw file
- package com.atlassian.plugins.codegen;
- /**
- * Describes an key-value pair that should be added to the <systemPropertyVariables>
- * element in AMPS configuration.
- */
- public class AmpsSystemPropertyVariable extends AbstractPropertyValue implements PluginProjectChange
- {
- public static AmpsSystemPropertyVariable ampsSystemPropertyVariable(String name, String value)
- {
- return new AmpsSystemPropertyVariable(name, value);
- }
- private AmpsSystemPropertyVariable(String name, String value)
- {
- super(name, value);
- }
-
- @Override
- public String toString()
- {
- return "[systemPropertyVariable: " + super.toString() + "]";
- }
- }