Package org.apache.rave.opensocial.service.impl

Examples of org.apache.rave.opensocial.service.impl.FieldRestrictingPerson


        new FieldRestrictingPerson(null, null).setBirthday(new Date());
    }

    @Test(expected = NotSupportedException.class)
    public void setBodyType() {
        new FieldRestrictingPerson(null, null).setBodyType(new BodyTypeImpl());
    }
View Full Code Here


        new FieldRestrictingPerson(null, null).setBodyType(new BodyTypeImpl());
    }

    @Test(expected = NotSupportedException.class)
    public void setBooks() {
        new FieldRestrictingPerson(null, null).setBooks(new ArrayList<String>());
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setBooks(new ArrayList<String>());
    }

    @Test(expected = NotSupportedException.class)
    public void setCars() {
        new FieldRestrictingPerson(null, null).setCars(new ArrayList<String>());
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setCars(new ArrayList<String>());
    }

    @Test(expected = NotSupportedException.class)
    public void setChildren() {
        new FieldRestrictingPerson(null, null).setChildren(DISPLAY_NAME);
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setChildren(DISPLAY_NAME);
    }

    @Test(expected = NotSupportedException.class)
    public void setCurrentLocation() {
        new FieldRestrictingPerson(null, null).setCurrentLocation(new org.apache.shindig.social.core.model.AddressImpl());
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setCurrentLocation(new org.apache.shindig.social.core.model.AddressImpl());
    }

    @Test(expected = NotSupportedException.class)
    public void setDrinker() {
        new FieldRestrictingPerson(null, null).setDrinker(new EnumImpl<Drinker>(Drinker.QUIT));
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setDrinker(new EnumImpl<Drinker>(Drinker.QUIT));
    }

    @Test(expected = NotSupportedException.class)
    public void setEthnicity() {
        new FieldRestrictingPerson(null, null).setEthnicity(SUFFIX);
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setEthnicity(SUFFIX);
    }

    @Test(expected = NotSupportedException.class)
    public void setFashion() {
        new FieldRestrictingPerson(null, null).setFashion(SUFFIX);
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setFashion(SUFFIX);
    }

    @Test(expected = NotSupportedException.class)
    public void setFood() {
        new FieldRestrictingPerson(null, null).setFood(new ArrayList<String>());
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setFood(new ArrayList<String>());
    }

    @Test(expected = NotSupportedException.class)
    public void setEmails() {
        new FieldRestrictingPerson(null, null).setEmails(new ArrayList<ListField>());
    }
View Full Code Here

TOP

Related Classes of org.apache.rave.opensocial.service.impl.FieldRestrictingPerson

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.