]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
5edc6a2a2befb78e5dfba137088f7b197712c9c0
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.client;
2
3 import org.collectionspace.services.jaxb.AbstractCommonList;
4
5 /**
6  * 
7  * @author remillet
8  *
9  * All clients returning AbstractCommonList types should extend this class.
10  * 
11  * @param <P>
12  */
13 public abstract class AbstractCommonListPoxServiceClientImpl<P extends CollectionSpaceCommonListPoxProxy, CPT>
14         extends AbstractPoxServiceClientImpl<AbstractCommonList, P, CPT> {
15         //
16         // All clients returning AbstractCommonList types should extend this class.
17         //
18         
19         public AbstractCommonListPoxServiceClientImpl() {
20                 super();
21         }
22         
23         public AbstractCommonListPoxServiceClientImpl(String clientPropertiesFilename) {
24                 super(clientPropertiesFilename);
25         }
26 }