Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

problem with AbstractSnapshotTask

Hi,
I trying to extended the data warehouse for storage any custom field.

I have set "Plug-in Development"->Target Platform with this path \server\update-site.

I have this error "The type com.ibm.team.repository.service.async.AbstractAutoScheduledTask cannot be resolved.
It is indirectly referenced from required .class files" when I try to write this class:


package com.ibm.team.datawarehouse.service.odc.internal;

import com.ibm.team.datawarehouse.service.AbstractSnapshotTask;
import com.ibm.team.datawarehouse.service.ISnapshotService;
import com.ibm.team.datawarehouse.service.odc.IOdcSnapshotService;

/*
* This class is used by the plugin for automatic snapshots.
*/
public class OdcSnapshotTask extends AbstractSnapshotTask {

private final static String TASK_ID = "OdcSnapshotTask";

@Override
public String getTaskId() {
return TASK_ID;
}

@Override
protected ISnapshotService getSnapshotService() {
return getService(IOdcSnapshotService.class);
}

}


Any suggestions?
Regards
Andrea

0 votes


Be the first one to answer this question!

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,952

Question asked: May 14 '09, 8:34 a.m.

Question was seen: 4,584 times

Last updated: May 14 '09, 8:34 a.m.

Confirmation Cancel Confirm