Package javax.rules

Examples of javax.rules.Handle


     * Test containsObject.
     */
    public void testContainsObject( ) throws Exception
    {
        Person bob = new Person( "bob" );
        Handle handle = statefulSession.addObject( bob );
        assertTrue( "where is bob", statefulSession.containsObject( handle ) );
    }
View Full Code Here


     * Test updateObject.
     */
    public void testUpdateObject( ) throws Exception
    {
        Person bob = new Person( "bob" );
        Handle handle = statefulSession.addObject( bob );
        statefulSession.updateObject( handle, bob = new Person( "boby" ) );
        assertEquals(
            "where is boby", bob, statefulSession.getObject( handle ) );
    }
View Full Code Here

     * Test removeObject.
     */
    public void testRemoveObject( ) throws Exception
    {
        Person bob = new Person( "bob" );
        Handle handle = statefulSession.addObject( bob );
        assertTrue( "where is bob", statefulSession.containsObject( handle ) );

        statefulSession.removeObject( handle );
        assertTrue(
            "bob still there", !statefulSession.containsObject( handle ) );
View Full Code Here

     * Test reset.
     */
    public void testReset( ) throws Exception
    {
        Person bob = new Person( "bob" );
        Handle handle = statefulSession.addObject( bob );
        assertTrue( "where is bob", statefulSession.containsObject( handle ) );

        statefulSession.reset( );
        assertTrue(
            "bob still there", !statefulSession.containsObject( handle ) );
View Full Code Here

     */
    @Test
    public void testContainsObject() throws Exception {
        this.statefulSession = this.engine.getStatefulRuleSession( this.bindUri );
        final Person bob = new Person( "bob" );
        final Handle handle = this.statefulSession.addObject( bob );
        assertTrue( "where is bob",
                    this.statefulSession.containsObject( handle ) );
    }
View Full Code Here

     */
    @Test
    public void testUpdateObject() throws Exception {
        this.statefulSession = this.engine.getStatefulRuleSession( this.bindUri );
        Person bob = new Person( "bob" );
        final Handle handle = this.statefulSession.addObject( bob );
        this.statefulSession.updateObject( handle,
                                           bob = new Person( "boby" ) );
        assertEquals( "where is boby",
                      bob,
                      this.statefulSession.getObject( handle ) );
View Full Code Here

     */
    @Test
    public void testRemoveObject() throws Exception {
        this.statefulSession = this.engine.getStatefulRuleSession( this.bindUri );
        final Person bob = new Person( "bob" );
        final Handle handle = this.statefulSession.addObject( bob );
        assertTrue( "where is bob",
                    this.statefulSession.containsObject( handle ) );

        this.statefulSession.removeObject( handle );
        assertTrue( "bob still there",
View Full Code Here

    @Test
    public void testReset() throws Exception {
        this.statefulSession = this.engine.getStatefulRuleSession( this.bindUri );

        final Person bob = new Person( "bob" );
        final Handle handle = this.statefulSession.addObject( bob );
        assertTrue( "where is bob",
                    this.statefulSession.containsObject( handle ) );

        this.statefulSession.reset();
        assertTrue( "bob still there",
View Full Code Here

     * Test containsObject.
     */
    public void testContainsObject() throws Exception {
        this.statefulSession = this.engine.getStatefulRuleSession( this.bindUri );
        final Person bob = new Person( "bob" );
        final Handle handle = this.statefulSession.addObject( bob );
        assertTrue( "where is bob",
                    this.statefulSession.containsObject( handle ) );
    }
View Full Code Here

     * Test updateObject.
     */
    public void testUpdateObject() throws Exception {
        this.statefulSession = this.engine.getStatefulRuleSession( this.bindUri );
        Person bob = new Person( "bob" );
        final Handle handle = this.statefulSession.addObject( bob );
        this.statefulSession.updateObject( handle,
                                           bob = new Person( "boby" ) );
        assertEquals( "where is boby",
                      bob,
                      this.statefulSession.getObject( handle ) );
View Full Code Here

TOP

Related Classes of javax.rules.Handle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.