View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition.impl; 2 3 import org.smartcomps.twister.engine.priv.core.definition.PropertyAlias; 4 5 /*** 6 * Persistent implementation of the Property interface. 7 */ 8 public class PropertyAliasImpl implements PropertyAlias{ 9 10 private Long id; 11 private String messageType; 12 private String part; 13 private String query; 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 getMessageType() { 24 return messageType; 25 } 26 27 public void setMessageType(String messageType) { 28 this.messageType = messageType; 29 } 30 31 public String getPart() { 32 return part; 33 } 34 35 public void setPart(String part) { 36 this.part = part; 37 } 38 39 public String getQuery() { 40 return query; 41 } 42 43 public void setQuery(String query) { 44 this.query = query; 45 } 46 }

This page was automatically generated by Maven