This file contains 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
'use strict'; | |
angular.module('MODULE_NAME_HERE') | |
.factory('FirebaseStrapSelect', function (syncData, $filter, $q) { | |
return function (fireBasePath){ | |
var | |
defer = $q.defer(), | |
buildingTypeSelectObject = [], |
This file contains 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
. | |
├── Gruntfile.js | |
├── README.md | |
├── bower.json | |
├── package.json | |
├── pom.xml | |
├── spring_loaded | |
│ └── springloaded-jhipster.jar | |
├── src | |
│ ├── main |
This file contains 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
$scope.pesquisar = function() { | |
var orgaosManager = $scope.orgaosManager = {}; | |
orgaosManager.all = Restangular.all('orgaoAtendimento'); | |
// orgaosManager.currentPage = 0; | |
// orgaosManager.pages = 0; | |
// orgaosManager.current = {}; | |
// orgaosManager.location = $location; | |
orgaosManager.pageSize = 5; |
This file contains 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
[DEBUG] org.jasig.cas.client.validation.Saml11TicketValidator - Loading custom parameters from configuration. | |
[DEBUG] org.jasig.cas.client.validation.Saml11TicketValidator - Constructing validation url: https://srvsionline1.no-ip.org:8443/governa-cas/samlValidate?TARGET=http%3A%2F%2Flocalhost%3A8080%2Fj_spring_cas_security_check | |
[DEBUG] org.jasig.cas.client.validation.Saml11TicketValidator - Retrieving response from server. | |
[DEBUG] sun.net.www.protocol.http.HttpURLConnection - sun.net.www.MessageHeader@2004df0510 pairs: {POST /governa-cas/samlValidate?TARGET=http%3A%2F%2Flocalhost%3A8080%2Fj_spring_cas_security_check HTTP/1.1: null}{Content-Type: text/xml}{SOAPAction: http://www.oasis-open.org/committees/security}{Cache-Control: no-cache}{Pragma: no-cache}{User-Agent: Java/1.7.0_60}{Host: srvsionline1.no-ip.org:8443}{Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2}{Connection: keep-alive}{Content-Length: 436} | |
[DEBUG] sun.net.www.protocol.http.HttpURLConnection - sun.net.www.MessageHeader@1fcdd1af |
This file contains 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
@Configuration | |
@EnableWebMvcSecurity | |
public class WebSecurityConfig extends WebSecurityConfigurerAdapter { | |
@Bean | |
public ServiceProperties serviceProperties() { | |
ServiceProperties serviceProperties = new ServiceProperties(); | |
serviceProperties.setService("https://localhost:8443/cas-sample/j_spring_cas_security_check"); | |
serviceProperties.setSendRenew(false); | |
return serviceProperties; |
This file contains 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
Show hidden characters
/** | |
* Created with gist plugin | |
*/ | |
{ | |
"auto_upgrade_last_run": null, | |
"in_process_packages": | |
[ | |
], | |
"installed_dependencies": | |
[ |
This file contains 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
# EditorConfig helps developers define and maintain consistent | |
# coding styles between different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*.java] | |
indent_style = space | |
indent_size = 4 |
This file contains 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
Http Specification | |
http://www.w3.org/Protocols/HTTP/1.0/spec.html | |
Dr. Tesis creating restfull | |
https://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm | |
Restfull Maturity Level | |
http://www.crummy.com/writing/speaking/2008-QCon/act3.html | |
Martin fowler explaining Restfull Maturity Level |
This file contains 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
--- | |
- name: Install Java 1.7 | |
yum: name=java-1.7.0-openjdk state=present |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.pmenos.ecommerce</groupId> | |
<artifactId>exportacao</artifactId> | |
<name>exportacao_ecommerce</name> | |
<packaging>jar</packaging> |