本文整理汇总了Java中com.helger.peppol.smpclient.SMPClientConfiguration类的典型用法代码示例。如果您正苦于以下问题:Java SMPClientConfiguration类的具体用法?Java SMPClientConfiguration怎么用?Java SMPClientConfiguration使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SMPClientConfiguration类属于com.helger.peppol.smpclient包,在下文中一共展示了SMPClientConfiguration类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: before
import com.helger.peppol.smpclient.SMPClientConfiguration; //导入依赖的package包/类
@Override
public void before ()
{
super.before ();
FileOperationManager.INSTANCE.deleteDirRecursiveIfExisting (PDLucene.getLuceneIndexDir ());
GlobalIDFactory.setPersistentIntIDFactory (new WebIOIntIDFactory ("pd-ids.dat"));
// Ensure the network system properties are assigned
SMPClientConfiguration.getConfigFile ().applyAllNetworkSystemProperties ();
}
示例2: main
import com.helger.peppol.smpclient.SMPClientConfiguration; //导入依赖的package包/类
public static void main (final String [] args) throws Exception
{
// Proxy configuration may be contained in SMP client properties
SMPClientConfiguration.getConfigFile ().applyAllNetworkSystemProperties ();
new JettyStarter (RunInJettyPEPPOLAS2.class).run ();
}
示例3: main
import com.helger.peppol.smpclient.SMPClientConfiguration; //导入依赖的package包/类
public static void main (final String [] args) throws Exception
{
SMPClientConfiguration.getConfigFile ().applyAllNetworkSystemProperties ();
new JettyStarter (RunInJettyPD.class).run ();
}