org.restlet.data.Status Java Examples
The following examples show how to use
org.restlet.data.Status.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IndexResource.java From ontopia with Apache License 2.0 | 6 votes |
protected Collection<?> getOccurrences(String value, String datatype) { OccurrenceIndexIF index = getIndex(OccurrenceIndexIF.class); try { switch (getAttribute("type").toUpperCase()) { case "VALUE": if (datatype == null) return index.getOccurrences(value); else return index.getOccurrences(value, new URILocator(datatype)); case "PREFIX": if (value == null) throw OntopiaRestErrors.MANDATORY_ATTRIBUTE_IS_NULL.build("value", "String"); if (datatype == null) return index.getOccurrencesByPrefix(value); else return index.getOccurrencesByPrefix(value, new URILocator(datatype)); case "GTE": return IteratorUtils.toList(index.getValuesGreaterThanOrEqual(value)); case "LTE": return IteratorUtils.toList(index.getValuesSmallerThanOrEqual(value)); default: setStatus(Status.CLIENT_ERROR_NOT_FOUND, TYPE_ERROR_MESSAGE); return null; } } catch (MalformedURLException mufe) { throw OntopiaRestErrors.MALFORMED_LOCATOR.build(mufe, datatype); } }
Example #2
Source File: AgentsAgidObjectsUpdate.java From vicinity-gateway-api with GNU General Public License v3.0 | 6 votes |
@Put("json") public Representation store(Representation entity) { String attrAgid = getAttribute(ATTR_AGID); Logger logger = (Logger) getContext().getAttributes().get(Api.CONTEXT_LOGGER); XMLConfiguration config = (XMLConfiguration) getContext().getAttributes().get(Api.CONTEXT_CONFIG); if (attrAgid == null){ logger.info("AGID: " + attrAgid + " Invalid Agent ID."); throw new ResourceException(Status.CLIENT_ERROR_NOT_FOUND, "Invalid Agent ID."); } if (!entity.getMediaType().equals(MediaType.APPLICATION_JSON)){ logger.info("AGID: " + attrAgid + " Invalid object descriptions."); throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Invalid object descriptions"); } return lightweightUpdate(entity, logger, config); }
Example #3
Source File: AgentsAgidObjects.java From vicinity-gateway-api with GNU General Public License v3.0 | 6 votes |
/** * Update the thing descriptions of objects registered under the Agent. * * @param entity Representation of the incoming JSON. * */ @Put("json") public Representation store(Representation entity) { String attrAgid = getAttribute(ATTR_AGID); Logger logger = (Logger) getContext().getAttributes().get(Api.CONTEXT_LOGGER); XMLConfiguration config = (XMLConfiguration) getContext().getAttributes().get(Api.CONTEXT_CONFIG); if (attrAgid == null){ logger.info("AGID: " + attrAgid + " Invalid Agent ID."); throw new ResourceException(Status.CLIENT_ERROR_NOT_FOUND, "Invalid Agent ID."); } if (!entity.getMediaType().equals(MediaType.APPLICATION_JSON)){ logger.info("AGID: " + attrAgid + " Invalid object descriptions."); throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Invalid object descriptions"); } return heavyweightUpdate(entity, logger, config); }
Example #4
Source File: ObjectsOidPropertiesPid.java From vicinity-gateway-api with GNU General Public License v3.0 | 6 votes |
/** * Gets the property value of an available IoT object. * * @return Latest property value. */ @Get public Representation represent(Representation entity) { String attrOid = getAttribute(ATTR_OID); String attrPid = getAttribute(ATTR_PID); String callerOid = getRequest().getChallengeResponse().getIdentifier(); Map<String, String> queryParams = getQuery().getValuesMap(); Logger logger = (Logger) getContext().getAttributes().get(Api.CONTEXT_LOGGER); if (attrOid == null || attrPid == null){ logger.info("OID: " + attrOid + " PID: " + attrPid + " Invalid identifier."); throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Invalid identifier."); } String body = getRequestBody(entity, logger); return getObjectProperty(callerOid, attrOid, attrPid, body, queryParams); }
Example #5
Source File: RestManager.java From lucene-solr with Apache License 2.0 | 6 votes |
/** * Locates the RestManager using ThreadLocal SolrRequestInfo. */ public static RestManager getRestManager(SolrRequestInfo solrRequestInfo) { if (solrRequestInfo == null) throw new ResourceException(Status.SERVER_ERROR_INTERNAL, "No SolrRequestInfo in this Thread!"); SolrQueryRequest req = solrRequestInfo.getReq(); RestManager restManager = (req != null) ? req.getCore().getRestManager() : null; if (restManager == null) throw new ResourceException(Status.SERVER_ERROR_INTERNAL, "No RestManager found!"); return restManager; }
Example #6
Source File: InstanceResource.java From helix with Apache License 2.0 | 6 votes |
@Override public Representation delete() { try { String clusterName = ResourceUtil.getAttributeFromRequest(getRequest(), ResourceUtil.RequestKey.CLUSTER_NAME); String instanceName = ResourceUtil.getAttributeFromRequest(getRequest(), ResourceUtil.RequestKey.INSTANCE_NAME); ZkClient zkclient = ResourceUtil.getAttributeFromCtx(getContext(), ResourceUtil.ContextKey.ZKCLIENT); ClusterSetup setupTool = new ClusterSetup(zkclient); setupTool.dropInstanceFromCluster(clusterName, instanceName); getResponse().setStatus(Status.SUCCESS_OK); } catch (Exception e) { getResponse().setEntity(ClusterRepresentationUtil.getErrorAsJsonStringFromException(e), MediaType.APPLICATION_JSON); getResponse().setStatus(Status.SUCCESS_OK); LOG.error("Error in delete instance", e); } return null; }
Example #7
Source File: PerfMonDataResource.java From floodlight_with_topoguard with Apache License 2.0 | 6 votes |
@Get("json") public CumulativeTimeBucket handleApiQuery() { IPktInProcessingTimeService pktinProcTime = (IPktInProcessingTimeService)getContext().getAttributes(). get(IPktInProcessingTimeService.class.getCanonicalName()); setStatus(Status.SUCCESS_OK, "OK"); // If the user is requesting this they must think that it is enabled, // so lets enable it to prevent from erroring out if (!pktinProcTime.isEnabled()){ pktinProcTime.setEnabled(true); logger.warn("Requesting performance monitor data when performance monitor is disabled. Turning it on"); } // Allocate output object if (pktinProcTime.isEnabled()) { CumulativeTimeBucket ctb = pktinProcTime.getCtb(); ctb.computeAverages(); return ctb; } return null; }
Example #8
Source File: RestManager.java From lucene-solr with Apache License 2.0 | 6 votes |
@Override public void doGet(BaseSolrResource endpoint, String childId) { // filter results by /schema or /config String path = ManagedEndpoint.resolveResourceId(endpoint.getRequest()); Matcher resourceIdMatcher = resourceIdRegex.matcher(path); if (!resourceIdMatcher.matches()) { // extremely unlikely but didn't want to squelch it either throw new ResourceException(Status.SERVER_ERROR_NOT_IMPLEMENTED, path); } String filter = resourceIdMatcher.group(1); List<Map<String,String>> regList = new ArrayList<>(); for (ManagedResourceRegistration reg : restManager.registry.getRegistered()) { if (!reg.resourceId.startsWith(filter)) continue; // doesn't match filter if (RestManagerManagedResource.class.isAssignableFrom(reg.implClass)) continue; // internal, no need to expose to outside regList.add(reg.getInfo()); } endpoint.getSolrResponse().add("managedResources", regList); }
Example #9
Source File: ObjectsOidEventsEid.java From vicinity-gateway-api with GNU General Public License v3.0 | 6 votes |
/** * Cancel subscription to the channel. * * @return statusMessage {@link StatusMessage StatusMessage} with the result of the operation. */ @Delete public Representation remove(Representation entity) { String attrOid = getAttribute(ATTR_OID); String attrEid = getAttribute(ATTR_EID); String callerOid = getRequest().getChallengeResponse().getIdentifier(); Map<String, String> queryParams = getQuery().getValuesMap(); Logger logger = (Logger) getContext().getAttributes().get(Api.CONTEXT_LOGGER); if (attrEid == null){ logger.info("EID: " + attrEid + " Given identifier does not exist."); throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Invalid identifier."); } String body = getRequestBody(entity, logger); CommunicationManager communicationManager = (CommunicationManager) getContext().getAttributes().get(Api.CONTEXT_COMMMANAGER); return new JsonRepresentation(communicationManager.unsubscribeFromEventChannel(callerOid, attrOid, attrEid, queryParams, body).buildMessage().toString()); }
Example #10
Source File: RateLimiterResource.java From uReplicator with Apache License 2.0 | 6 votes |
@Override @Put public Representation put(Representation entity) { Form params = getRequest().getResourceRef().getQueryAsForm(); String rate = params.getFirstValue("messagerate"); if (StringUtils.isEmpty(rate)) { getResponse().setStatus(Status.CLIENT_ERROR_BAD_REQUEST); return new StringRepresentation( String.format("Failed to add new rate limit due to missing parameter messagerate%n")); } try { workerInstance.setMessageRatePerSecond(Double.parseDouble(rate)); LOGGER.info("Set messageRate to {} finished", rate); } catch (Exception e) { getResponse().setStatus(Status.CLIENT_ERROR_BAD_REQUEST); LOGGER.error("Set messageRate to {} failed", rate, e); return new StringRepresentation( String.format("Failed to add new topic, with exception: %s%n", e)); } return new StringRepresentation( String.format("Successfully set rate: %s%n", rate)); }
Example #11
Source File: TopicManagementRestletResource.java From uReplicator with Apache License 2.0 | 6 votes |
@Override @Put("json") public Representation put(Representation entity) { try { String jsonRequest = entity.getText(); TopicPartition topicPartitionInfo = TopicPartition.init(jsonRequest); if (_autoTopicWhitelistingManager != null) { _autoTopicWhitelistingManager.removeFromBlacklist(topicPartitionInfo.getTopic()); } if (_helixMirrorMakerManager.isTopicExisted(topicPartitionInfo.getTopic())) { _helixMirrorMakerManager.expandTopicInMirrorMaker(topicPartitionInfo); return new StringRepresentation( String.format("Successfully expand topic: %s", topicPartitionInfo)); } else { getResponse().setStatus(Status.CLIENT_ERROR_NOT_FOUND); return new StringRepresentation(String.format( "Failed to expand topic, topic: %s is not existed!", topicPartitionInfo.getTopic())); } } catch (Exception e) { LOGGER.error("Got error during processing Put request", e); getResponse().setStatus(Status.SERVER_ERROR_INTERNAL); return new StringRepresentation( String.format("Failed to expand topic, with exception: %s", e)); } }
Example #12
Source File: GeoWaveOperationServiceWrapperTest.java From geowave with Apache License 2.0 | 6 votes |
@Test public void getMethodReturnsSuccessStatus() throws Exception { // Rarely used Teapot Code to check. final Boolean successStatusIs200 = true; final ServiceEnabledCommand operation = mockedOperation(HttpMethod.GET, successStatusIs200); classUnderTest = new GeoWaveOperationServiceWrapper(operation, null); classUnderTest.setResponse(new Response(null)); classUnderTest.setRequest(new Request(Method.GET, "foo.bar")); classUnderTest.restGet(); Assert.assertEquals( successStatusIs200, classUnderTest.getResponse().getStatus().equals(Status.SUCCESS_OK)); }
Example #13
Source File: AgentsAgidObjectsDelete.java From vicinity-gateway-api with GNU General Public License v3.0 | 6 votes |
/** * Deletes - unregisters the IoT object(s). * * @param entity Representation of the incoming JSON. List of IoT thing descriptions that are to be removed * (taken from request). * @return Notification of success or failure. * */ @Post("json") public Representation accept(Representation entity) { String attrAgid = getAttribute(ATTR_AGID); Logger logger = (Logger) getContext().getAttributes().get(Api.CONTEXT_LOGGER); XMLConfiguration config = (XMLConfiguration) getContext().getAttributes().get(Api.CONTEXT_CONFIG); if (attrAgid == null){ logger.info("AGID: " + attrAgid + " Invalid Agent ID."); throw new ResourceException(Status.CLIENT_ERROR_NOT_FOUND, "Invalid Agent ID."); } if (!entity.getMediaType().equals(MediaType.APPLICATION_JSON)){ logger.info("AGID: " + attrAgid + " Invalid object descriptions."); throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Invalid object descriptions"); } return deleteObjects(entity, logger, config); }
Example #14
Source File: PerfMonToggleResource.java From floodlight_with_topoguard with Apache License 2.0 | 6 votes |
@Get("json") public String retrieve() { IPktInProcessingTimeService pktinProcTime = (IPktInProcessingTimeService)getContext().getAttributes(). get(IPktInProcessingTimeService.class.getCanonicalName()); String param = ((String)getRequestAttributes().get("perfmonstate")).toLowerCase(); if (param.equals("reset")) { // We cannot reset something that is disabled, so enable it first. if(!pktinProcTime.isEnabled()){ pktinProcTime.setEnabled(true); } pktinProcTime.getCtb().reset(); } else { if (param.equals("enable") || param.equals("true")) { pktinProcTime.setEnabled(true); } else if (param.equals("disable") || param.equals("false")) { pktinProcTime.setEnabled(false); } } setStatus(Status.SUCCESS_OK, "OK"); return "{ \"enabled\" : " + pktinProcTime.isEnabled() + " }"; }
Example #15
Source File: ClearStaticFlowEntriesResource.java From floodlight_with_topoguard with Apache License 2.0 | 6 votes |
@Get public void ClearStaticFlowEntries() { IStaticFlowEntryPusherService sfpService = (IStaticFlowEntryPusherService)getContext().getAttributes(). get(IStaticFlowEntryPusherService.class.getCanonicalName()); String param = (String) getRequestAttributes().get("switch"); if (log.isDebugEnabled()) log.debug("Clearing all static flow entires for switch: " + param); if (param.toLowerCase().equals("all")) { sfpService.deleteAllFlows(); } else { try { sfpService.deleteFlowsForSwitch(HexString.toLong(param)); } catch (NumberFormatException e){ setStatus(Status.CLIENT_ERROR_BAD_REQUEST, ControllerSwitchesResource.DPID_ERROR); return; } } }
Example #16
Source File: FoxbpmStatusService.java From FoxBPM with Apache License 2.0 | 6 votes |
public Status getStatus(Throwable throwable, Request request, Response response) { Status status = null; if (throwable instanceof JsonMappingException && throwable.getCause() != null) { status = getSpecificStatus(throwable.getCause(), request, response); } if (status == null) { Throwable causeThrowable = null; if (throwable.getCause() != null && throwable.getCause() instanceof FoxBPMException) { causeThrowable = throwable.getCause(); } else { causeThrowable = throwable; } status = getSpecificStatus(causeThrowable, request, response); } return status != null ? status : Status.SERVER_ERROR_INTERNAL; }
Example #17
Source File: ObjectsOidActionsAid.java From vicinity-gateway-api with GNU General Public License v3.0 | 6 votes |
/** * Performs an action on an available IoT object. * * @param entity Representation of the incoming JSON. * @return A task to perform an action was submitted. */ @Post("json") public Representation accept(Representation entity) { String attrOid = getAttribute(ATTR_OID); String attrAid = getAttribute(ATTR_AID); String callerOid = getRequest().getChallengeResponse().getIdentifier(); Map<String, String> queryParams = getQuery().getValuesMap(); Logger logger = (Logger) getContext().getAttributes().get(Api.CONTEXT_LOGGER); if (attrOid == null || attrAid == null){ logger.info("OID: " + attrOid + " AID: " + attrAid + " Given identifier does not exist."); throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Given identifier does not exist."); } String body = getRequestBody(entity, logger); return startAction(callerOid, attrOid, attrAid, body, queryParams); }
Example #18
Source File: AnalysisTaskByAnalysisTaskResource.java From scava with Eclipse Public License 2.0 | 6 votes |
@Override public Representation doRepresent() { AnalysisTaskService service = platform.getAnalysisRepositoryManager().getTaskService(); String analysisTaskId = getQueryValue("analysisTaskId"); AnalysisTask analysisTask = service.getTaskByAnalysisTaskId(analysisTaskId); analysisTask.getDbObject().put("projectId", analysisTask.getProject().getProjectId()); List<Object> metricExecutions = new ArrayList<>(); for (MetricExecution metric : analysisTask.getMetricExecutions()) { Map<String, String> newMetric = new HashMap<>(); newMetric.put("metricProviderId", metric.getDbObject().get("metricProviderId").toString()); newMetric.put("projectId", metric.getDbObject().get("projectId").toString()); newMetric.put("lastExecutionDate", metric.getDbObject().get("lastExecutionDate").toString()); metricExecutions.add(newMetric); } analysisTask.getDbObject().put("metricExecutions", metricExecutions); StringRepresentation rep = new StringRepresentation(analysisTask.getDbObject().toString()); rep.setMediaType(MediaType.APPLICATION_JSON); getResponse().setStatus(Status.SUCCESS_OK); return rep; }
Example #19
Source File: ExceptionProcessor.java From container with Apache License 2.0 | 6 votes |
@Override public void process(final Exchange exchange) throws Exception { ExceptionProcessor.LOG.debug("Exception handling..."); final Response response = exchange.getIn().getHeader(RestletConstants.RESTLET_RESPONSE, Response.class); if (exchange.getIn().getBody() instanceof ParseException) { response.setStatus(Status.CLIENT_ERROR_BAD_REQUEST); final String body = exchange.getIn().getBody(String.class); response.setEntity("JSON is not valid: " + body, MediaType.TEXT_ALL); ExceptionProcessor.LOG.warn("JSON is not valid: {}", body); } else if (exchange.getIn().getBody() instanceof NullPointerException) { response.setStatus(Status.CLIENT_ERROR_BAD_REQUEST); response.setEntity("Needed information not specified.", MediaType.TEXT_ALL); ExceptionProcessor.LOG.warn("Needed information not specified."); } else if (exchange.getIn().getBody() instanceof Exception) { response.setStatus(Status.CLIENT_ERROR_BAD_REQUEST); response.setEntity("Invocation failed! " + exchange.getIn().getBody().toString(), MediaType.TEXT_ALL); ExceptionProcessor.LOG.warn("Invocation failed! " + exchange.getIn().getBody().toString()); } exchange.getOut().setBody(response); }
Example #20
Source File: ListStaticFlowEntriesResource.java From floodlight_with_topoguard with Apache License 2.0 | 6 votes |
@Get public Map<String, Map<String, OFFlowMod>> ListStaticFlowEntries() { IStaticFlowEntryPusherService sfpService = (IStaticFlowEntryPusherService)getContext().getAttributes(). get(IStaticFlowEntryPusherService.class.getCanonicalName()); String param = (String) getRequestAttributes().get("switch"); if (log.isDebugEnabled()) log.debug("Listing all static flow entires for switch: " + param); if (param.toLowerCase().equals("all")) { return sfpService.getFlows(); } else { try { Map<String, Map<String, OFFlowMod>> retMap = new HashMap<String, Map<String, OFFlowMod>>(); retMap.put(param, sfpService.getFlows(param)); return retMap; } catch (NumberFormatException e){ setStatus(Status.CLIENT_ERROR_BAD_REQUEST, ControllerSwitchesResource.DPID_ERROR); } } return null; }
Example #21
Source File: GeoWaveOperationServiceWrapperTest.java From geowave with Apache License 2.0 | 6 votes |
@Test @Ignore public void asyncMethodReturnsSuccessStatus() throws Exception { // Rarely used Teapot Code to check. final Boolean successStatusIs200 = true; final ServiceEnabledCommand operation = mockedOperation(HttpMethod.POST, successStatusIs200, true); classUnderTest = new GeoWaveOperationServiceWrapper(operation, null); classUnderTest.setResponse(new Response(null)); classUnderTest.restPost(null); // TODO: Returns 500. Error Caught at // "final Context appContext = Application.getCurrent().getContext();" Assert.assertEquals( successStatusIs200, classUnderTest.getResponse().getStatus().equals(Status.SUCCESS_OK)); }
Example #22
Source File: EntityResource.java From attic-polygene-java with Apache License 2.0 | 6 votes |
@Override protected Representation delete( Variant variant ) throws ResourceException { Usecase usecase = UsecaseBuilder.newUsecase( "Remove entity" ); EntityStoreUnitOfWork uow = entityStore.newUnitOfWork( module, usecase, SystemTime.now() ); try { EntityReference reference = EntityReference.create( identity ); uow.entityStateOf( module, reference ).remove(); uow.applyChanges().commit(); getResponse().setStatus( Status.SUCCESS_NO_CONTENT ); } catch( EntityNotFoundException e ) { uow.discard(); getResponse().setStatus( Status.CLIENT_ERROR_NOT_FOUND ); } return new EmptyRepresentation(); }
Example #23
Source File: DeploymentResource.java From FoxBPM with Apache License 2.0 | 6 votes |
@Put public String update(Representation entity){ String deploymentId = getAttribute("deploymentId"); InputStream input = null; try { input = entity.getStream(); if(input == null){ throw new FoxbpmPluginException("请求中必须包含文件流", "Rest服务"); } ModelService modelService = FoxBpmUtil.getProcessEngine().getModelService(); DeploymentBuilder deploymentBuilder = modelService.createDeployment(); ZipInputStream zip = new ZipInputStream(input); deploymentBuilder.updateDeploymentId(deploymentId); deploymentBuilder.addZipInputStream(zip); deploymentBuilder.deploy(); setStatus(Status.SUCCESS_OK); } catch (Exception e) { if (e instanceof FoxBPMException) { throw (FoxBPMException) e; } throw new FoxBPMException(e.getMessage(), e); } return "SUCCESS"; }
Example #24
Source File: ResourceValidity.java From attic-polygene-java with Apache License 2.0 | 6 votes |
void checkRequest() throws ResourceException { // Check command rules Instant unmodifiedSince = request.getConditions().getUnmodifiedSince().toInstant(); EntityState state = spi.entityStateOf( entity ); Instant lastModifiedSeconds = state.lastModified().with(ChronoField.NANO_OF_SECOND, 0 ); if( unmodifiedSince != null ) { if( lastModifiedSeconds.isAfter( unmodifiedSince ) ) { throw new ResourceException( Status.CLIENT_ERROR_CONFLICT ); } } // Check query rules Instant modifiedSince = request.getConditions().getModifiedSince().toInstant(); if( modifiedSince != null ) { if( !lastModifiedSeconds.isAfter( modifiedSince ) ) { throw new ResourceException( Status.REDIRECTION_NOT_MODIFIED ); } } }
Example #25
Source File: FrameworkStartLevelResource.java From concierge with Eclipse Public License 1.0 | 6 votes |
@Override public Representation put(final Representation r, final Variant variant) { try { final FrameworkStartLevelPojo sl = fromRepresentation(r, r.getMediaType()); final FrameworkStartLevel fsl = getFrameworkStartLevel(); if (sl.getStartLevel() != 0) { fsl.setStartLevel(sl.getStartLevel()); } if (sl.getInitialBundleStartLevel() != 0) { fsl.setInitialBundleStartLevel(sl.getInitialBundleStartLevel()); } return SUCCESS(Status.SUCCESS_NO_CONTENT); } catch (final Exception e) { return ERROR(e, variant); } }
Example #26
Source File: ScopesResource.java From ontopia with Apache License 2.0 | 6 votes |
@Get public Collection<TopicIF> getScopes() { addMixInAnnotations(TopicIF.class, MFlatTopic.class); ScopeIndexIF index = getIndex(ScopeIndexIF.class); switch (getAttribute("type").toUpperCase()) { case "ASSOCIATIONS": return index.getAssociationThemes(); case "OCCURRENCES": return index.getOccurrenceThemes(); case "NAMES": return index.getTopicNameThemes(); case "VARIANTS": return index.getVariantThemes(); default: setStatus(Status.CLIENT_ERROR_NOT_FOUND, "Expected type one of associations, occurrences, names, variants"); return null; } }
Example #27
Source File: RootResource.java From attic-polygene-java with Apache License 2.0 | 6 votes |
@SubResource public void administration() { ChallengeResponse challenge = Request.getCurrent().getChallengeResponse(); if( challenge == null ) { Response.getCurrent() .setChallengeRequests( Collections.singletonList( new ChallengeRequest( ChallengeScheme.HTTP_BASIC, "Forum" ) ) ); throw new ResourceException( Status.CLIENT_ERROR_UNAUTHORIZED ); } User user = select( Users.class, Users.USERS_ID ).userNamed( challenge.getIdentifier() ); if( user == null || !user.isCorrectPassword( new String( challenge.getSecret() ) ) ) { throw new ResourceException( Status.CLIENT_ERROR_UNAUTHORIZED ); } current().select( user ); subResource( AdministrationResource.class ); }
Example #28
Source File: AnalysisTaskPushOnWorkerResource.java From scava with Eclipse Public License 2.0 | 5 votes |
@Override public Representation doRepresent() { AnalysisTaskService service = platform.getAnalysisRepositoryManager().getTaskService(); String analysisTaskId = getQueryValue("analysisTaskId"); String workerId = getQueryValue("workerId"); AnalysisTask task = service.executeTaskOnWorker(analysisTaskId, workerId); StringRepresentation rep = new StringRepresentation(task.getDbObject().toString()); rep.setMediaType(MediaType.APPLICATION_JSON); getResponse().setStatus(Status.SUCCESS_OK); return rep; }
Example #29
Source File: ContextResource.java From attic-polygene-java with Apache License 2.0 | 5 votes |
protected void selectFromList( List<?> list, String indexString ) { Integer index = Integer.decode( indexString ); if( index < 0 || index >= list.size() ) { throw new ResourceException( Status.CLIENT_ERROR_NOT_FOUND ); } current().select( index ); Object value = list.get( index ); current().select( value ); }
Example #30
Source File: OntopiaTestResource.java From ontopia with Apache License 2.0 | 5 votes |
@Override public void doError(Status errorStatus) { if (getOntopiaError() != null) { throw new OntopiaTestResourceException(errorStatus, ontopiaErrorPojo); } super.doError(errorStatus); }