package com.vci.server.conf;
|
|
public class ServiceTempl {
|
|
private String _description = "";
|
|
private String _entry = "";
|
|
public ServiceTempl() {
|
|
}
|
|
public ServiceTempl(String entry, String description) {
|
this._entry = entry;
|
this._description = description;
|
}
|
|
// /**
|
// * @return the _name
|
// */
|
// public String getName() {
|
// return _name;
|
// }
|
//
|
// /**
|
// * @param _name the _name to set
|
// */
|
// public void setName(String name) {
|
// this._name = name;
|
// }
|
|
/**
|
* @return the _description
|
*/
|
public String getDescription() {
|
return _description;
|
}
|
|
/**
|
* @param _description the _description to set
|
*/
|
public void setDescription(String description) {
|
this._description = description;
|
}
|
|
/**
|
* @return the _entry
|
*/
|
public String getEntry() {
|
return _entry;
|
}
|
|
/**
|
* @param _entry the _entry to set
|
*/
|
public void setEntry(String _entry) {
|
this._entry = _entry;
|
}
|
|
}
|