01: package org.osbl.persistence; 02: 03: public abstract class DeleteGeneralCommand<T> implements Command { 04: protected Object object; 05: 06: public DeleteGeneralCommand<T> setObject(Object object) { 07: this .object = object; 08: return this ; 09: } 10: 11: public abstract void execute(); 12: }