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

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


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

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


        new FieldRestrictingPerson(null, null).setPets(PREFERRED_NAME);
    }

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

        new FieldRestrictingPerson(null, null).setNickname(PREFERRED_NAME);
    }

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

        new FieldRestrictingPerson(null, null).setNetworkPresence(new EnumImpl<NetworkPresence>(NetworkPresence.AWAY));
    }

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

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

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

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

    @Test(expected = NotSupportedException.class)
    public void setLookingFor() {
        new FieldRestrictingPerson(null, null).setLookingFor(new ArrayList<org.apache.shindig.protocol.model.Enum<LookingFor>>());
    }
View Full Code Here

        new FieldRestrictingPerson(null, null).setLookingFor(new ArrayList<org.apache.shindig.protocol.model.Enum<LookingFor>>());
    }

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

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

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

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

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

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

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