source: MDService2/trunk/MDService2/src/eu/clarin/cmdi/mdservice/action/CollectionProxyAction.java @ 627

Last change on this file since 627 was 627, checked in by vronk, 14 years ago

introducing the user: only real change in GenericProxyAction?
the rest is just removed unused imports.

File size: 734 bytes
Line 
1package eu.clarin.cmdi.mdservice.action;
2
3import java.io.IOException;
4import java.net.URL;
5
6/**
7 *
8 *
9 */
10public class CollectionProxyAction extends GenericProxyAction {
11
12        private static final long serialVersionUID = 1L;
13       
14        private String proxy_key = "collections";
15
16        @Override 
17        public String getFullFormat() {
18                return "collection2" + getFormat();
19        }
20       
21        @Override
22        public String getProxyKey() {
23                return proxy_key;
24        }
25       
26       
27        public URL getTargetRequest() throws IOException {
28
29                URL targetURL = null;
30                //targetURL =new URL( getBaseURL(), getActionkey());
31                targetURL = new URL(getBaseURL(), "");
32                //Admin.notifyUser("CollectionProxy.targetURL:" + targetURL);
33
34            return targetURL;
35        }
36       
37       
38
39}
Note: See TracBrowser for help on using the repository browser.