/*
 * Copyright 2009 IHE International (http://www.ihe.net)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.ihe.xcpd.resp.action;

import javax.ejb.Local;

/**
 * @author Abderrazek Boufahja > INRIA Rennes IHE development Project
 *
 */
@Local
public interface ConfigurationManagerLocal {
    
    public void setXcpdResponseSchema(String xcpdResponseSchema);
    public String getXcpdResponseSchema();
    public void setXcpdRequestSchema(String xcpdRequestSchema);
    public String getXcpdRequestSchema();
    public void setGazelleBin(String gazelleBin);
    public String getGazelleBin();
    public void setPdsServerPort(String pdsServerPort);
    public String getPdsServerPort();
    public void setPdsServerName(String pdsServerName);
    public String getPdsServerName();
    public void setProcess(String process);
    public String getProcess();
    public void setStsServiceName(String stsServiceName);
    public String getStsServiceName();
    public void setStsPort(String stsPort);
    public String getStsPort();
    public void setStsUrl(String stsUrl);
    public String getStsUrl();
    public void setIsxua(String isxua);
    public String getIsxua();
    public void setHomeCommunityID(String homeCommunityID);
    public String getHomeCommunityID();
    public void setSystemRootID(String systemRootID);
    public String getSystemRootID();
    public void setSchematronValidator(String schematronValidator);
    public String getSchematronValidator();
    
    public void initializeVariables();
    public void saveVariables();
	
	public void destroy();
}
