Ignore:
Timestamp:
06/10/11 22:49:05 (13 years ago)
Author:
gaba
Message:

htmlsimple - paging, details
options(withSummary) - corrections
profile reading - corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • MDService2/trunk/MDService2/src/eu/clarin/cmdi/mdservice/action/WorkspaceAction.java

    r1388 r1417  
    105105        public static String ADMINISTRATION_FILENAME = "Administration.xml";
    106106       
    107         private String workspace_filename = "WorkspaceProfile.xml";
     107        public static String WORKSPACE_FILENAME = "WorkspaceProfile.xml";
    108108        /**
    109109         * Properties to be filled by Struts with according request-parameters
     
    133133       
    134134        public String Workspace_filename(){
    135                 return workspace_filename;
     135                return WORKSPACE_FILENAME;
    136136        }
    137137
    138138        public void setWorkspace_filename(String workspace_filename) {
    139                 this.workspace_filename = workspace_filename;
     139                this.WORKSPACE_FILENAME = workspace_filename;
    140140        }
    141141       
     
    300300                        profilename =  ADMINISTRATION_FILENAME;
    301301                } else if (type.toLowerCase().equals(FILENAME)){
    302                         profilename = this.workspace_filename;
     302                        profilename = this.WORKSPACE_FILENAME;
    303303                }
    304304               
     
    331331       
    332332        public String getPath() {
    333                 String targetPath = getBasePath() + this.workspace_filename;//getWorkspaceProfile();       
     333                String targetPath = getBasePath() + this.WORKSPACE_FILENAME;//getWorkspaceProfile();       
    334334        Admin.notifyUser("WorkspaceAction TARGETPATH: " + targetPath);             
    335335        return targetPath;
Note: See TracChangeset for help on using the changeset viewer.