/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

  1. package com.atlassian.plugins.codegen;
  2. /**
  3. * Describes an key-value pair that should be added to the <systemPropertyVariables>
  4. * element in AMPS configuration.
  5. */
  6. public class AmpsSystemPropertyVariable extends AbstractPropertyValue implements PluginProjectChange
  7. {
  8. public static AmpsSystemPropertyVariable ampsSystemPropertyVariable(String name, String value)
  9. {
  10. return new AmpsSystemPropertyVariable(name, value);
  11. }
  12. private AmpsSystemPropertyVariable(String name, String value)
  13. {
  14. super(name, value);
  15. }
  16. @Override
  17. public String toString()
  18. {
  19. return "[systemPropertyVariable: " + super.toString() + "]";
  20. }
  21. }