View Javadoc
1 package org.smartcomps.twister.engine.priv.core.dynamic.impl; 2 3 import org.smartcomps.twister.engine.priv.core.dynamic.ValuedProperty; 4 5 /*** 6 * Persistent implementation of the Property interface. 7 * @see org.smartcomps.twister.engine.priv.core.dynamic.ValuedProperty 8 */ 9 public class ValuedPropertyImpl implements ValuedProperty { 10 11 private Long id; 12 private String name; 13 private String value; 14 15 public Long getId() { 16 return id; 17 } 18 19 public void setId(Long id) { 20 this.id = id; 21 } 22 23 public String getName() { 24 return name; 25 } 26 27 public void setName(String name) { 28 this.name = name; 29 } 30 31 public String getValue() { 32 return value; 33 } 34 35 public void setValue(String value) { 36 this.value = value; 37 } 38 }

This page was automatically generated by Maven