com.evasion.common.controler.FormConfigSite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of COMMON Show documentation
Show all versions of COMMON Show documentation
API de l'application modulaire evasion-en-ligne
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.evasion.common.controler;
/**
*
* @author sebastien.glon
*/
public interface FormConfigSite {
String getTitre();
void setTitre(String titre);
String getContactResp();
void setContactResp(String contact);
String getContactSupport();
void setContactSupport(String contact);
String getDescription();
void setDescription(String desc);
String getSujet();
void setSujet(String s);
String getKeyword();
void setKeyword(String k);
String getAnalyticsAccount();
void setAnalyticsAccount(String analytics);
}