Skip to content

Commit

Permalink
Updated headers to reflect that Robert Drysdale contributed (a lot) t…
Browse files Browse the repository at this point in the history
…o those files.
  • Loading branch information
vbfischer committed Jan 24, 2012
1 parent 18318b9 commit 65bcd8f
Show file tree
Hide file tree
Showing 10 changed files with 798 additions and 806 deletions.
Original file line number Original file line Diff line number Diff line change
@@ -1,25 +1,24 @@
package org.springframework.social.dropbox.api.impl; package org.springframework.social.dropbox.api.impl;


import org.codehaus.jackson.Version; import org.codehaus.jackson.Version;
import org.codehaus.jackson.map.module.SimpleModule; import org.codehaus.jackson.map.module.SimpleModule;
import org.springframework.social.dropbox.api.DropboxUserProfile; import org.springframework.social.dropbox.api.DropboxUserProfile;
import org.springframework.social.dropbox.api.FileUrl; import org.springframework.social.dropbox.api.FileUrl;
import org.springframework.social.dropbox.api.Metadata; import org.springframework.social.dropbox.api.Metadata;


/** /**
* User: Bryce Fischer * @author Bryce Fischer
* Date: 5/17/11 * @author Robert Drysdale
* Time: 11:06 AM */
*/ public class DropboxModule extends SimpleModule {
public class DropboxModule extends SimpleModule { public DropboxModule() {
public DropboxModule() { super("DropboxModule", new Version(1, 0, 0, null));
super("DropboxModule", new Version(1, 0, 0, null)); }
}

@Override
@Override public void setupModule(SetupContext context) {
public void setupModule(SetupContext context) { context.setMixInAnnotations(DropboxUserProfile.class, DropboxUserProfileMixin.class);
context.setMixInAnnotations(DropboxUserProfile.class, DropboxUserProfileMixin.class); context.setMixInAnnotations(Metadata.class, MetadataMixin.class);
context.setMixInAnnotations(Metadata.class, MetadataMixin.class); context.setMixInAnnotations(FileUrl.class, FileUrlMixin.class);
context.setMixInAnnotations(FileUrl.class, FileUrlMixin.class); }
} }
}
Loading

0 comments on commit 65bcd8f

Please sign in to comment.