All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chen0040.drools.models.RuleContent Maven / Gradle / Ivy

The newest version!
package com.github.chen0040.drools.models;


/**
 * Created by xschen on 23/12/2016.
 */
public class RuleContent {
   private String path;
   private String topic;
   private String content;


   public String getPath() {
      return path;
   }


   public void setPath(String path) {
      this.path = path;
   }


   public String getTopic() {
      return topic;
   }


   public void setTopic(String category) {
      this.topic = category;
   }


   public String getContent() {
      return content;
   }


   public void setContent(String content) {
      this.content = content;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy