summaryrefslogtreecommitdiffstats
path: root/proxy/code
Commit message (Collapse)AuthorAgeFilesLines
* brought in changes from masterDmitri Dolguikh2009-12-3127-1531/+0
|
* move from code/src/ -> src/main/javajesus m. rodriguez2009-12-311-31/+0
|
* move src to proper locationjesus m. rodriguez2009-12-311-210/+0
|
* moved new resource to proper locationjesus m. rodriguez2009-12-311-58/+0
|
* moved newly add code to src/main/java, updated depsjesus m. rodriguez2009-12-319-1237/+0
|
* put the tests back in .test packagejesus m. rodriguez2009-12-312-185/+0
|
* reorganize the tree for use with buildrjesus m. rodriguez2009-12-3139-4941/+0
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/candlepinDmitri Dolguikh2009-12-2210-16/+39
|\
| * Increment db sequences by one instead of 50.Devan Goodwin2009-12-189-9/+9
| | | | | | | | Nooo idea why Hibernate/JPA wants to default to 50 but anyhow.
| * Use difference sequences for each table.Devan Goodwin2009-12-1810-10/+28
| | | | | | | | Previously was only using one, which is a little strange.
| * Fix consumer type ID issue.Devan Goodwin2009-12-182-8/+13
| |
* | client and server certificates and tomcat's server.xml config file for ssl ↵Dmitri Dolguikh2009-12-224-0/+169
|/ | | | certificate-based authentication
* Merge branch 'master' of ssh://git.fedorahosted.org/git/candlepinDmitri Dolguikh2009-12-1717-186/+349
|\ | | | | | | | | Conflicts: proxy/code/src/org/fedoraproject/candlepin/resource/test/EntitlementResourceTest.java
| * End-to-end consume an entitlement use case working.Devan Goodwin2009-12-166-14/+75
| | | | | | | | | | Creation of the consumer still cannot accept a map of key/value pairs, but otherwise this appears to be working when hit from Python scripts.
| * Fix consumer resource to work over REST interface.Devan Goodwin2009-12-145-39/+74
| | | | | | | | | | | | Having issues with getting data from Python test scripts through Jersey and into the Java. Currently this works but needs to have the ConsumerInfo re-added.
| * Introduct db population script, update deploy script to create database.Devan Goodwin2009-12-141-0/+1
| |
| * Fix consumer creation API to take a type by label and look it up.Devan Goodwin2009-12-145-10/+26
| |
| * Merge branch 'master' of ssh://git.fedorahosted.org/git/candlepinDevan Goodwin2009-12-142-4/+10
| |\
| * | Ensure entitlement increases current members in the pool.Devan Goodwin2009-12-141-0/+3
| | |
| * | Test entitlement expiry and single pool per product/owner.Devan Goodwin2009-12-113-17/+34
| | |
| * | Text entitlement max membership.Devan Goodwin2009-12-111-26/+34
| | |
| * | Implement simple entitlement consumption.Devan Goodwin2009-12-116-104/+181
| | | | | | | | | | | | Still needs some cleanup, testing, and edge case handling.
* | | updated tests to use guice, warp-persist and actual dbDmitri Dolguikh2009-12-1729-206/+319
| |/ |/|
* | @Ignore webapp based test for now. They probably need to move to a different ↵Adrian Likins2009-12-112-4/+10
|/ | | | | | | | target (either the python api test scripts, or a different ant target, etc) Make hudson happy hopefully.
* Add missing @Inject on ConsumerResource. Fixes webapp deployment.Devan Goodwin2009-12-111-0/+3
|
* Add unique constraints on the consumed products table.Devan Goodwin2009-12-112-2/+5
| | | | | Kind of irrelevant as the set keeps items from being added multiple times, but just in case.
* Hookup ConsumerResource create to database.Devan Goodwin2009-12-104-33/+59
|
* Re-add Consumer UUID field.Devan Goodwin2009-12-104-1/+18
| | | | | Will be important for allowing consumers to know if they're already "registered" with the entitlement server.
* guice now properly injects dependencies into ResourcesDmitri Dolguikh2009-12-106-57/+52
|
* checkstyle: fix @return tagjesus m. rodriguez2009-12-091-1/+7
|
* checkstyle: name refactoringjesus m. rodriguez2009-12-091-6/+3
|
* checkstyle: remove _ from variable names, use camelCasejesus m. rodriguez2009-12-091-6/+5
|
* checkstyle: unused importjesus m. rodriguez2009-12-091-2/+0
|
* checkstyle: more header fixesjesus m. rodriguez2009-12-092-2/+2
|
* checkstyle: header fail, static not ALLCAPS, needed private ctor.jesus m. rodriguez2009-12-091-4/+22
|
* checkstyle: header failjesus m. rodriguez2009-12-091-1/+2
|
* checkstyle: whitespace around equalsjesus m. rodriguez2009-12-094-7/+7
|
* checkstyle: fix @param tagsjesus m. rodriguez2009-12-096-6/+7
|
* checkstyle: add headerjesus m. rodriguez2009-12-092-2/+28
|
* checkstyle: line longer than 92 characters shortened.jesus m. rodriguez2009-12-093-7/+10
|
* checkstyle: add Red Hat headerjesus m. rodriguez2009-12-091-0/+17
|
* checkstyle: fix whitespace around =jesus m. rodriguez2009-12-092-6/+7
|
* checkstyle fix part deuxjesus m. rodriguez2009-12-098-67/+95
|
* checkstyle fixesjesus m. rodriguez2009-12-095-7/+57
|
* Stop creating/dropping db schema in production. (oops)Devan Goodwin2009-12-091-3/+2
| | | | | | | | Also assuming PostgreSQL user of "candlepin" with no password. Using a pg_hba.conf like: local all all trust host all all 127.0.0.1/32 trust
* guice injector is now being initialized with jpa persisence in servlet ↵Dmitri Dolguikh2009-12-081-1/+8
| | | | environment
* Merge branch 'master' of ssh://git.fedorahosted.org/git/candlepinDmitri Dolguikh2009-12-087-7/+258
|\
| * Merge branch 'master' into cert_modelAdrian Likins2009-12-083-3/+57
| |\
| * | cert owner was populated by addProducts, move that code into addOwnerAdrian Likins2009-12-081-10/+9
| | | | | | | | | | | | | | | | | | so we can use it to create a cert blob. Needs to change when auth comes into play anyway.
| * | get to the real error, comment out broke debugAdrian Likins2009-12-081-1/+1
| | |