Advertisement
mbnoimi

corp-000.properties

Mar 19th, 2014
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.85 KB | None | 0 0
  1. #
  2. # Licensed to JumpMind Inc under one or more contributor
  3. # license agreements.  See the NOTICE file distributed
  4. # with this work for additional information regarding
  5. # copyright ownership.  JumpMind Inc licenses this file
  6. # to you under the GNU General Public License, version 3.0 (GPLv3)
  7. # (the "License"); you may not use this file except in compliance
  8. # with the License.
  9. #
  10. # You should have received a copy of the GNU General Public License,
  11. # version 3.0 (GPLv3) along with this library; if not, see
  12. # <http://www.gnu.org/licenses/>.
  13. #
  14. # Unless required by applicable law or agreed to in writing,
  15. # software distributed under the License is distributed on an
  16. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  17. # KIND, either express or implied.  See the License for the
  18. # specific language governing permissions and limitations
  19. # under the License.
  20. #
  21.  
  22. engine.name=corp-000
  23.  
  24. # The class name for the JDBC Driver
  25. #db.driver=com.mysql.jdbc.Driver
  26. #db.driver=oracle.jdbc.driver.OracleDriver
  27. #db.driver=org.postgresql.Driver
  28. #db.driver=org.apache.derby.jdbc.EmbeddedDriver
  29. #db.driver=org.hsqldb.jdbcDriver
  30. #db.driver=net.sourceforge.jtds.jdbc.Driver
  31. #db.driver=com.ibm.db2.jcc.DB2Driver
  32. #db.driver=com.informix.jdbc.IfxDriver
  33. #db.driver=org.firebirdsql.jdbc.FBDriver
  34. #db.driver=interbase.interclient.Driver
  35. db.driver=org.sqlite.JDBC
  36. #db.driver=com.sybase.jdbc4.jdbc.SybDriver
  37. # db.driver=org.h2.Driver
  38.  
  39. # The JDBC URL used to connect to the database
  40. #db.url=jdbc:mysql://localhost/corp?tinyInt1isBit=false
  41. #db.url=jdbc:oracle:thin:@127.0.0.1:1521:corp
  42. #db.url=jdbc:postgresql://localhost/corp?stringtype=unspecified
  43. #db.url=jdbc:derby:corp;create=true
  44. #db.url=jdbc:hsqldb:file:corp;shutdown=true
  45. #db.url=jdbc:jtds:sqlserver://localhost:1433;useCursors=true;bufferMaxMemory=10240;lobBuffer=5242880
  46. #db.url=jdbc:db2://localhost/corp
  47. #db.url=jdbc:informix-sqli://localhost:9088/corp:INFORMIXSERVER=ol_ids_1150_1
  48. #db.url=jdbc:firebirdsql:localhost:/var/lib/firebird/data/databasename
  49. #db.url=jdbc:interbase://localhost//opt/interbase/data/corp.gdb
  50. db.url=jdbc:sqlite:/home/mbnoimi/symmetric/tutorial/sym-corp/symmetric-3.5.18/databases/corp.sqlite
  51. #db.url=jdbc:sybase:Tds:localhost:5000/databasename
  52. #db.url=jdbc:h2:corp;AUTO_SERVER=TRUE;LOCK_TIMEOUT=60000
  53.  
  54. # The user to login as who can create and update tables
  55. #db.user=sa
  56.  
  57. # The password for the user to login as
  58. #db.password=
  59.  
  60. registration.url=
  61. sync.url=http://localhost:8080/sync/corp-000
  62.  
  63. # Do not change these for running the demo
  64. group.id=corp
  65. external.id=000
  66.  
  67. # Don't muddy the waters with purge logging
  68. job.purge.period.time.ms=7200000
  69.  
  70. # This is how often the routing job will be run in milliseconds
  71. job.routing.period.time.ms=5000
  72. # This is how often the push job will be run.
  73. job.push.period.time.ms=10000
  74. # This is how often the pull job will be run.
  75. job.pull.period.time.ms=10000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement