Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.account.rest/src/org/eclipse/osee/account/rest/internal/AccountPreferencesResource.java')
-rw-r--r--plugins/org.eclipse.osee.account.rest/src/org/eclipse/osee/account/rest/internal/AccountPreferencesResource.java70
1 files changed, 70 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.account.rest/src/org/eclipse/osee/account/rest/internal/AccountPreferencesResource.java b/plugins/org.eclipse.osee.account.rest/src/org/eclipse/osee/account/rest/internal/AccountPreferencesResource.java
new file mode 100644
index 00000000000..14bf266d279
--- /dev/null
+++ b/plugins/org.eclipse.osee.account.rest/src/org/eclipse/osee/account/rest/internal/AccountPreferencesResource.java
@@ -0,0 +1,70 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.account.rest.internal;
+
+import javax.annotation.security.RolesAllowed;
+import javax.ws.rs.Consumes;
+import javax.ws.rs.GET;
+import javax.ws.rs.PUT;
+import javax.ws.rs.Produces;
+import javax.ws.rs.core.MediaType;
+import javax.ws.rs.core.Response;
+import javax.ws.rs.core.Response.ResponseBuilder;
+import org.eclipse.osee.account.admin.SystemRoles;
+import org.eclipse.osee.account.rest.model.AccountPreferencesData;
+import org.eclipse.osee.account.rest.model.AccountPreferencesInput;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class AccountPreferencesResource {
+
+ private final AccountOps accountOps;
+ private final String accountId;
+
+ public AccountPreferencesResource(AccountOps accountOps, String accountId) {
+ this.accountOps = accountOps;
+ this.accountId = accountId;
+ }
+
+ /**
+ * Get account preferences
+ *
+ * @return account preferences
+ */
+ @GET
+ @RolesAllowed(SystemRoles.ROLES_AUTHENTICATED)
+ @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
+ public AccountPreferencesData getAccountPreferences() {
+ return accountOps.getAccountPreferencesData(accountId);
+ }
+
+ /**
+ * Sets all preferences to match the incoming preferences.
+ *
+ * @return response
+ * @response.representation.200.doc successfully logged out
+ * @response.representation.304.doc session not modified
+ */
+ @PUT
+ @RolesAllowed(SystemRoles.ROLES_AUTHENTICATED)
+ @Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
+ public Response setAccountPreferences(AccountPreferencesInput input) {
+ ResponseBuilder builder;
+ boolean modified = accountOps.setAccountPreferences(accountId, input);
+ if (modified) {
+ builder = Response.ok();
+ } else {
+ builder = Response.notModified();
+ }
+ return builder.build();
+ }
+}

Back to the top