mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
1) Web Script framework extensions for supporting the development of Alfresco based Facebook applications 2) Sample Document Library Facebook application 3) FormData enhancements for supporting request args retrieval for multipart/form-data encoding 4) Sort order added to Search Javascript API Note: Stuff needs commenting, tidy up, but at least it's in SVN. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7259 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
41 lines
611 B
Java
41 lines
611 B
Java
package org.alfresco.web.scripts.facebook;
|
|
|
|
public class FacebookAppModel
|
|
{
|
|
String appId;
|
|
String apiKey;
|
|
String secretKey;
|
|
|
|
|
|
public FacebookAppModel(String apiKey)
|
|
{
|
|
this.apiKey = apiKey;
|
|
}
|
|
|
|
public String getApiKey()
|
|
{
|
|
return apiKey;
|
|
}
|
|
|
|
public String getSecret()
|
|
{
|
|
return secretKey;
|
|
}
|
|
|
|
public void setSecret(String secretKey)
|
|
{
|
|
this.secretKey = secretKey;
|
|
}
|
|
|
|
public String getId()
|
|
{
|
|
return appId;
|
|
}
|
|
|
|
public void setId(String appId)
|
|
{
|
|
this.appId = appId;
|
|
}
|
|
|
|
}
|