]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
01259236a76467579db46a0e17bbb25cc512b00c
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.publicitem.nuxeo;
2
3 import org.collectionspace.services.common.context.ServiceContext;
4 import org.collectionspace.services.common.document.InvalidDocumentException;
5 import org.collectionspace.services.common.document.ValidatorHandler;
6 import org.collectionspace.services.common.document.DocumentHandler.Action;
7 import org.collectionspace.services.client.PoxPayloadIn;
8 import org.collectionspace.services.client.PoxPayloadOut;
9
10 public class PublicItemValidatorHandler implements ValidatorHandler<PoxPayloadIn, PoxPayloadOut> {
11
12         @Override
13         public void validate(Action action, ServiceContext<PoxPayloadIn, PoxPayloadOut> ctx)
14                         throws InvalidDocumentException {
15                 // TODO Auto-generated method stub
16                 System.out.println("PublicItemValidatorHandler executed.");
17
18         }
19
20 }