|
@@ -71,7 +71,8 @@ public class GAAdminService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public List<GAPropertyDTO> listGAProperties(String accountName) throws DataException {
|
|
|
+ public List<GAPropertyDTO> listGAProperties(String accountName, boolean withDataStreams)
|
|
|
+ throws DataException {
|
|
|
List<GAPropertyDTO> gaProperties = Lists.newArrayList();
|
|
|
try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
|
|
|
AnalyticsAdminServiceClient.create(adminServiceSettings)) {
|
|
@@ -98,7 +99,9 @@ public class GAAdminService {
|
|
|
gaProperty.setUpdateTime(property.getUpdateTime().getSeconds());
|
|
|
|
|
|
// Sets the data streams associated with this property.
|
|
|
- gaProperty.setDataStreams(listGADataStreams(property.getName()));
|
|
|
+ if (withDataStreams) {
|
|
|
+ gaProperty.setDataStreams(listGADataStreams(property.getName()));
|
|
|
+ }
|
|
|
|
|
|
// Adds into the list;
|
|
|
gaProperties.add(gaProperty);
|