Package org.dspace.app.ldn.service
Interface NotifyServiceInboundPatternService
- All Known Implementing Classes:
NotifyServiceInboundPatternServiceImpl
public interface NotifyServiceInboundPatternService
Service interface class for the
NotifyServiceInboundPattern object.- Author:
- Mohamed Eskander (mohamed.eskander at 4science.com)
-
Method Summary
Modifier and TypeMethodDescriptioncreate(Context context, NotifyServiceEntity notifyServiceEntity) create new notifyServiceInboundPatternvoiddelete(Context context, NotifyServiceInboundPattern inboundPattern) delete the provided notifyServiceInboundPatternfindAutomaticPatterns(Context context) find all automatic notifyServiceInboundPatternsfindByServiceAndPattern(Context context, NotifyServiceEntity notifyServiceEntity, String pattern) find all notifyServiceInboundPatterns matched with the provided notifyServiceEntity and patternvoidupdate(Context context, NotifyServiceInboundPattern inboundPattern) update the provided notifyServiceInboundPattern
-
Method Details
-
findByServiceAndPattern
NotifyServiceInboundPattern findByServiceAndPattern(Context context, NotifyServiceEntity notifyServiceEntity, String pattern) throws SQLException find all notifyServiceInboundPatterns matched with the provided notifyServiceEntity and pattern- Parameters:
context- the contextnotifyServiceEntity- the notifyServiceEntitypattern- the pattern- Returns:
- all notifyServiceInboundPatterns matched with the provided notifyServiceEntity and pattern
- Throws:
SQLException- if database error
-
findAutomaticPatterns
find all automatic notifyServiceInboundPatterns- Parameters:
context- the context- Returns:
- all automatic notifyServiceInboundPatterns
- Throws:
SQLException- if database error
-
create
NotifyServiceInboundPattern create(Context context, NotifyServiceEntity notifyServiceEntity) throws SQLException create new notifyServiceInboundPattern- Parameters:
context- the contextnotifyServiceEntity- the notifyServiceEntity- Returns:
- the created notifyServiceInboundPattern
- Throws:
SQLException- if database error
-
update
update the provided notifyServiceInboundPattern- Parameters:
context- the contextinboundPattern- the notifyServiceInboundPattern- Throws:
SQLException- if database error
-
delete
delete the provided notifyServiceInboundPattern- Parameters:
context- the contextinboundPattern- the notifyServiceInboundPattern- Throws:
SQLException- if database error
-