This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <h:outputScript library="primefaces" name="jquery/jquery.js"/> | |
| <script language="javascript" type="text/javascript" src="#{request.contextPath}/js/jquery-1.7.1.min.js"/> | |
| <script language="javascript" type="text/javascript" src="#{request.contextPath}/js/position.js"/> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function showMessageDialog(sourceElement, jqr) { | |
| var x = getOffset(document.getElementById(sourceElement)).left; | |
| var y= getOffset(document.getElementById(sourceElement)).top; | |
| var parentSource = jqr.parent(); | |
| var parent = jqr.parent(); | |
| parent.find('.ui-dialog').each(function() { | |
| jQuery(this).css('position', 'absolute'); | |
| jQuery(this).css('width', '780px'); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ... | |
| <p:commandLink onmouseover="showMessageDialog('form50:selectLocationButton', PoliticaDialog.jq);"> | |
| <h:outputText id="selectLocationButton" value="Show MessageDialog"/> | |
| </p:commandLink> | |
| <p:dialog modal="true" widgetVar="statusDialog" header="Process..." draggable="false" | |
| closable="false"> | |
| <img src="#{request.contextPath}/images/ajaxloadingbar.gif"/> | |
| </p:dialog> | |
| ... | |
| <p:panel id="popup" style="border:0px"> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-orm</artifactId> | |
| <version>3.2.2.RELEASE</version> | |
| </dependency> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ... | |
| <bean id="chunkHandler" class="org.springframework.batch.integration.chunk.RemoteChunkHandlerFactoryBean"> | |
| <property name="chunkWriter" ref="chunkWriter" /> | |
| <property name="step" ref="step" /> | |
| </bean> | |
| <bean id="resourcelessTransactionManager" class="org.springframework.batch.support.transaction.ResourcelessTransactionManager" /> | |
| <bean id="jobRepository" class="org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean"> | |
| <property name="transactionManager" ref="resourcelessTransactionManager" /> | |
| </bean> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <dependency> | |
| <groupId>org.springframework.batch</groupId> | |
| <artifactId>spring-batch-core</artifactId> | |
| <version>2.1.7.RELEASE</version | |
| </dependency> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ... | |
| <bean id="resourcelessTransactionManager" class="org.springframework.batch.support.transaction.ResourcelessTransactionManager" /> | |
| <batch:job-repository id="jobRepository" | |
| data-source="batchDataSource" transaction-manager="resourcelessTransactionManager" | |
| isolation-level-for-create="SERIALIZABLE" table-prefix="BATCH_" | |
| max-varchar-length="6000" /> | |
| ... | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ... | |
| <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean" scope="singleton"> | |
| <property name="configLocation" value="classpath:quartz.properties" /> | |
| <property name="applicationContextSchedulerContextKey" value="applicationContext" /> | |
| ... | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | private final static String PROXY_HOST = "url"; | |
| private final static int PROXY_PORT=9999; | |
| private final static String PROXY_USER = "user"; | |
| private final static String PROXY_PASSWORD = "pass"; | |
| ... | |
| HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(); | |
| DefaultHttpClient defaultHttpClient = (DefaultHttpClient)factory.getHttpClient(); | |
| defaultHttpClient.getCredentialsProvider().setCredentials(new AuthScope(PROXY_HOST, PROXY_PORT), | |
| new UsernamePasswordCredentials(PROXY_USER, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ... | |
| <filter> | |
| <filter-name>cors</filter-name> | |
| <filter-class>org.app.web.filter.CORSFilter</filter-class> | |
| </filter> | |
| <filter-mapping> | |
| <filter-name>cors</filter-name> | |
| <url-pattern>/*</url-pattern> | |
| </filter-mapping> | 
OlderNewer