Product name string added

This commit is contained in:
roman.kisluhin
2016-02-19 11:38:14 +04:00
parent 475f77a4b8
commit b75bd699df

View File

@ -8,6 +8,8 @@ import java.util.Map;
* @author Victor Bellavin
*/
public class Product implements biz.redsoft.ncore.product.Product {
private static String PRODUCT_NAME = Product.class.getPackage().getName();
@Override
public void init(Map<Object, Object> properties) {
}
@ -23,4 +25,8 @@ public class Product implements biz.redsoft.ncore.product.Product {
@Override
public void destroy() {
}
public final String getName() {
return PRODUCT_NAME;
}
}