summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | | Remove the now obsolete BaseModel class.Devan Goodwin2009-12-019-142/+15
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Map the User class to the database.Devan Goodwin2009-12-014-11/+88
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Cleanup some unused imports.Devan Goodwin2009-12-014-9/+0
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | first stab at persisting of Consumer object in a real dbDmitri Dolguikh2009-12-026-19/+103
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge branch 'master' of ssh://git.fedorahosted.org/git/candlepinDmitri Dolguikh2009-12-015-34/+151
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Remove Entitlement.childEntitlements.Devan Goodwin2009-12-012-27/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't think we'll need an entitlement hierarchy. Entitlements already map to pools which map to products, these are in a hierarchy already.
| * | | | | | | | | | | | | | Map Entitlement, add some non-nullable columns, etc.Devan Goodwin2009-12-015-13/+156
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | added run and debug launcher to run tests from under eclipseDmitri Dolguikh2009-12-011-0/+21
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Map EntitlementPool class to database.Devan Goodwin2009-11-308-29/+72
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Consumer.type should be a required column.Devan Goodwin2009-11-275-5/+26
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Map consumed products.Devan Goodwin2009-11-273-44/+84
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Map ConsumerInfo.Devan Goodwin2009-11-278-35/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The map of properties was quite a challenge to get mapped with JPA annotations, in the end had to fall back to some Hibernate specific annotations.
* | | | | | | | | | | | | | Start testing Consumer and ConsumerType.Devan Goodwin2009-11-261-4/+19
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Move ConsumerType from ConsumerInfo to Consumer itself.Devan Goodwin2009-11-2610-56/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having this object on the info rather than the consumer itself started looking incorrect. Type is likely required, info is not and by default may be empty. Feels very much like something that should be defined on the consumer itself.
* | | | | | | | | | | | | | Begin mapping Consumer to database.Devan Goodwin2009-11-2613-100/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implications to a lot of other areas outside the model. Currently one test still failing, will be fixed soon.
* | | | | | | | | | | | | | Test Product hierarchy cascading.Devan Goodwin2009-11-251-5/+30
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Fix a ProductTest.Devan Goodwin2009-11-251-2/+2
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Clean DB objects after every test.Devan Goodwin2009-11-253-43/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous method of specifying what you'd like cleaned up wasn't working out so hot.
* | | | | | | | | | | | | | Map Product hierarchy, improve unit test db cleanup.Devan Goodwin2009-11-256-16/+98
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Drop Product UUID.Devan Goodwin2009-11-247-44/+12
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Move Product annotations onto fields instead of getters.Devan Goodwin2009-11-242-14/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems like a more consistent way to do this.
* | | | | | | | | | | | | | Annotate Owner object for database mapping.Devan Goodwin2009-11-246-65/+118
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Drop ApiHandler and ApiTest.Devan Goodwin2009-11-242-176/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not used.
* | | | | | | | | | | | | | Cleanup test transaction management.Devan Goodwin2009-11-242-23/+37
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Minor code cleanup.Devan Goodwin2009-11-233-8/+5
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Improve test output.Devan Goodwin2009-11-231-47/+44
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | build.xml: Remove unused macro.Devan Goodwin2009-11-201-19/+0
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | build.xml cleanup.Devan Goodwin2009-11-201-18/+4
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | More build.xml pruning, and merging the buildconf/build-*.xml files in.Devan Goodwin2009-11-203-183/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having it all in one place alleviates some concern over where things are defined when searching, and hopefully will make it easier to pear down.
* | | | | | | | | | | | | | Purge cruise control and code coverage from build.xml.Devan Goodwin2009-11-201-78/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was copy pasted and not something we use.
* | | | | | | | | | | | | | call owner/$uuid (aka, OwnerResource.get())Adrian Likins2009-11-201-0/+13
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | add test-ownerapy.pyAdrian Likins2009-11-201-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Just GET's the /owner/ url, since thats all /owner has
* | | | | | | | | | | | | | pool api that reads from certificatejesus m. rodriguez2009-11-181-4/+8
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | uploading and get of sat certjesus m. rodriguez2009-11-182-14/+38
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | remove unused test-connection, fix userapijesus m. rodriguez2009-11-183-47/+13
| |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | |
* | | | | | | | | | | | | beginning of DELETE consumer/uuid/product/uuidjesus m. rodriguez2009-11-172-0/+32
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | adding scripts to test entitlement and pool apijesus m. rodriguez2009-11-162-1/+5
| | | | | | | | | | | |
* | | | | | | | | | | | adding GET /products/ listjesus m. rodriguez2009-11-162-0/+69
| | | | | | | | | | | |
* | | | | | | | | | | | init the taskdefsjesus m. rodriguez2009-11-161-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | removed useless linejesus m. rodriguez2009-11-131-2/+0
| | | | | | | | | | | |
* | | | | | | | | | | | test commitjesus m. rodriguez2009-11-131-2/+3
| |_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | |
* | | | | | | | | | | allow upload of cert and return list of available ent poolsjesus m. rodriguez2009-11-128-27/+192
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | print out the data from the parsed certjesus m. rodriguez2009-11-111-0/+1
| | | | | | | | | |
* | | | | | | | | | move common jars to common.jar.dependencies to avoid duplication.jesus m. rodriguez2009-11-111-11/+12
| | | | | | | | | |
* | | | | | | | | | sort ivy dependencies so it's easier to seejesus m. rodriguez2009-11-111-64/+12
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | allow upload of a certificatejesus m. rodriguez2009-11-113-0/+139
| |_|_|_|_|_|_|/ |/| | | | | | |
* | | | | | | | 80 columns is the proper way of codingjesus m. rodriguez2009-11-112-3/+4
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | bring in beanutils for use with the certificate stuffjesus m. rodriguez2009-11-111-1/+1
| | | | | | |
* | | | | | | add in the spacewalk certificate parsing library.jesus m. rodriguez2009-11-1011-4/+1220
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | this should probably be made into a jar so others can use it.
* | | | | | ignore reports directory from buildrjesus m. rodriguez2009-11-101-0/+1
| |_|_|_|/ |/| | | |