當前位置: 首頁>>代碼示例>>Java>>正文


Java MetaDataConstants類代碼示例

本文整理匯總了Java中org.apache.tapestry5.MetaDataConstants的典型用法代碼示例。如果您正苦於以下問題:Java MetaDataConstants類的具體用法?Java MetaDataConstants怎麽用?Java MetaDataConstants使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


MetaDataConstants類屬於org.apache.tapestry5包,在下文中一共展示了MetaDataConstants類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: contributeMetaDataLocator

import org.apache.tapestry5.MetaDataConstants; //導入依賴的package包/類
public void contributeMetaDataLocator(MappedConfiguration<String, String> configuration)
{
    // Enabling @Secure only on some pages (the remaining ones are insecure)
    configuration.add("admin:" + MetaDataConstants.SECURE_PAGE, "true");
}
 
開發者ID:ffacon,項目名稱:tapestry5-angular2-demo,代碼行數:6,代碼來源:AppModule.java

示例2: contributeMetaDataLocator

import org.apache.tapestry5.MetaDataConstants; //導入依賴的package包/類
/**
 * When in production mode, all pages & actions should be presumed as "secure" (using HTTPS).
 * Otherwise, Tapestry will try and over think what pages should be secure.
 *
 * @url http://tapestry.apache.org/https.html
 * @param configuration
 */
public static
void contributeMetaDataLocator(MappedConfiguration<String,String> configuration)
{
    configuration.add(MetaDataConstants.SECURE_PAGE, "true");
}
 
開發者ID:Allogy,項目名稱:isqrl-server,代碼行數:13,代碼來源:IsqrlModule.java


注:本文中的org.apache.tapestry5.MetaDataConstants類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。