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

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


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

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


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

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

        new FieldRestrictingPerson(null, null).setIms(new ArrayList<ListField>());
    }

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

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

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

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

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

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

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

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

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

        new FieldRestrictingPerson(null, null).setAge(AGE);
    }

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

        new FieldRestrictingPerson(null, null).setAccounts(new ArrayList<Account>());
    }

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

        new FieldRestrictingPerson(null, null).setAddresses(new ArrayList<Address>());
    }

    @Test(expected = NotSupportedException.class)
    public void setBirthday() {
        new FieldRestrictingPerson(null, null).setBirthday(new Date());
    }
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.