Product name string added
This commit is contained in:
@ -8,19 +8,25 @@ import java.util.Map;
|
|||||||
* @author Victor Bellavin
|
* @author Victor Bellavin
|
||||||
*/
|
*/
|
||||||
public class Product implements biz.redsoft.ncore.product.Product {
|
public class Product implements biz.redsoft.ncore.product.Product {
|
||||||
@Override
|
private static String PRODUCT_NAME = Product.class.getPackage().getName();
|
||||||
public void init(Map<Object, Object> properties) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init(Application application) {
|
public void init(Map<Object, Object> properties) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void destroy(Application application) {
|
public void init(Application application) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void destroy() {
|
public void destroy(Application application) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void destroy() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public final String getName() {
|
||||||
|
return PRODUCT_NAME;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user