Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to modify the findModel method in SubService to return a Foo or Boo type rather than an Object type.

I'd like to be able to just call findModel from FooService or BooService without casting to a Foo or Boo model object.

Is that possible?

SubService:

public Object findModel(long id, Class modelClass) {

    Object modelObject = null;
    javax.jdo.Query query = persistenceManager.newQuery(modelClass);
    query.setFilter("id == idParam");
    query.declareParameters("long idParam");
    List<Object> modelObjects = (List<Object>) query.execute(id);
    if(modelObjects.isEmpty()){
        modelObject = null;
    }
    else{
        modelObject = modelObjects.get(0);
    }
    return modelObject;

}

FooService extends SubService:

public Foo getFoo(long id) {

    Foo modelObject = (Foo)this.findModel(id, Foo.class);
    return modelObject;

}

BooService extends SubService:

public Boo getBoo(long id) {

    Boo modelObject = (Boo)this.findModel(id, Boo.class);
    return modelObject;

}
share|improve this question

2 Answers

Redefine method with generics:

public <T> T findModel(long id, Class<T> modelClass)

Now it will return what you need and you do not need casting.

share|improve this answer
+1: Faster than me ;) – Peter Lawrey Jul 20 '11 at 11:58

Cast your objects in you findModel to SubService

public SubService findModel(long id, Class modelClass)  {
     return (SubService) modelObject;
}

Then you can drop the casting in fooService

Foo modelObject = this.findModel(id, Foo.class);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.