forked from OpenNTF/SocialSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert EntityList<> with generics to ConcreteList (ProfileList)
Revert EntityList<> with generics to ConcreteList (ProfileList)
Carlos Manias
committed
Apr 18, 2014
1 parent
c5874ff
commit 566e491
Showing
9 changed files
with
143 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...c/test/java/com/ibm/sbt/services/client/connections/profiles/ProfileServiceTestSuite.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...c/main/java/com/ibm/sbt/services/client/connections/profiles/ColleagueConnectionList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.ibm.sbt.services.client.connections.profiles; | ||
|
||
import com.ibm.sbt.services.client.Response; | ||
import com.ibm.sbt.services.client.base.IFeedHandler; | ||
import com.ibm.sbt.services.client.base.datahandlers.AtomEntityList; | ||
|
||
|
||
public class ColleagueConnectionList extends AtomEntityList<ColleagueConnection> { | ||
|
||
public ColleagueConnectionList(Response requestData, IFeedHandler<ColleagueConnection> feedHandler) { | ||
super(requestData, feedHandler); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
....sbt.core/src/main/java/com/ibm/sbt/services/client/connections/profiles/ProfileList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.ibm.sbt.services.client.connections.profiles; | ||
|
||
import com.ibm.sbt.services.client.Response; | ||
import com.ibm.sbt.services.client.base.IFeedHandler; | ||
import com.ibm.sbt.services.client.base.datahandlers.AtomEntityList; | ||
|
||
|
||
public class ProfileList extends AtomEntityList<Profile> { | ||
|
||
public ProfileList(Response requestData, IFeedHandler<Profile> feedHandler) { | ||
super(requestData, feedHandler); | ||
} | ||
|
||
} |
145 changes: 66 additions & 79 deletions
145
...t.core/src/main/java/com/ibm/sbt/services/client/connections/profiles/ProfileService.java
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
....ibm.sbt.core/src/main/java/com/ibm/sbt/services/client/connections/profiles/TagList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.ibm.sbt.services.client.connections.profiles; | ||
|
||
import com.ibm.sbt.services.client.Response; | ||
import com.ibm.sbt.services.client.base.IFeedHandler; | ||
import com.ibm.sbt.services.client.base.datahandlers.AtomEntityList; | ||
|
||
|
||
public class TagList extends AtomEntityList<Tag> { | ||
|
||
public TagList(Response requestData, IFeedHandler<Tag> feedHandler) { | ||
super(requestData, feedHandler); | ||
} | ||
|
||
} |