當前位置: 首頁>>代碼示例>>Java>>正文


Java ObjectWithSchema.create方法代碼示例

本文整理匯總了Java中com.mercateo.common.rest.schemagen.types.ObjectWithSchema.create方法的典型用法代碼示例。如果您正苦於以下問題:Java ObjectWithSchema.create方法的具體用法?Java ObjectWithSchema.create怎麽用?Java ObjectWithSchema.create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.mercateo.common.rest.schemagen.types.ObjectWithSchema的用法示例。


在下文中一共展示了ObjectWithSchema.create方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testGetForId

import com.mercateo.common.rest.schemagen.types.ObjectWithSchema; //導入方法依賴的package包/類
@Test
public void testGetForId() throws Exception {
    when(factStore.fetchById(TestFacts.one.id())).thenReturn(Optional.of(TestFacts.one));
    ObjectWithSchema<FactJson> value = ObjectWithSchema.create(null, JsonHyperSchema.from(Lists
            .newArrayList()));
    when(schemaCreator.forFactWithId(any())).thenReturn(value);
    ObjectWithSchema<FactJson> result = uut.getForId(TestFacts.one.id().toString());
    assertThat(result, is(value));
}
 
開發者ID:uweschaefer,項目名稱:factcast,代碼行數:10,代碼來源:FactsResource0Test.java

示例2: testGetForIdNotFound

import com.mercateo.common.rest.schemagen.types.ObjectWithSchema; //導入方法依賴的package包/類
@SuppressWarnings("unchecked")
@Test(expected = NotFoundException.class)
public void testGetForIdNotFound() throws Exception {
    when(factStore.fetchById(TestFacts.one.id())).thenThrow(IllegalArgumentException.class);
    ObjectWithSchema<FactJson> value = ObjectWithSchema.create(null, JsonHyperSchema.from(Lists
            .newArrayList()));
    when(schemaCreator.forFactWithId(any())).thenReturn(value);
    uut.getForId(TestFacts.one.id().toString());

}
 
開發者ID:uweschaefer,項目名稱:factcast,代碼行數:11,代碼來源:FactsResource0Test.java

示例3: getResponse

import com.mercateo.common.rest.schemagen.types.ObjectWithSchema; //導入方法依賴的package包/類
protected ObjectWithSchema<FullJsonType> getResponse(FullJsonType json) {
	final LinkFactory<ImplementationType> factoryForImplementation = getImplementationLinkFactory();
	final Optional<Link> selfLink = factoryForImplementation.forCall(Rel.SELF,
			r -> r.get(IdParameterBean.of(json.getId())));

	final ArrayList<Optional<Link>> result = Lists.newArrayList(selfLink);

	final List<Optional<Link>> additionalLinks = createAdditionalLinksForFullType(json, factoryForImplementation);

	result.addAll(additionalLinks);

	final JsonHyperSchema hyperSchema = JsonHyperSchema.fromOptional(result);
	return ObjectWithSchema.create(json, hyperSchema);
}
 
開發者ID:Mercateo,項目名稱:rest-jersey-utils,代碼行數:15,代碼來源:AbstractListingResource.java

示例4: getSomething

import com.mercateo.common.rest.schemagen.types.ObjectWithSchema; //導入方法依賴的package包/類
@Path("/method/{id}")
@GET
@RolesAllowed("test")
@Produces(MediaType.APPLICATION_JSON)
public ObjectWithSchema<Something> getSomething(@PathParam("id") String id) {
	Optional<Link> link = linkMetaFactory.createFactoryFor(ResourceClass.class).forCall(Rel.SELF,
			r -> r.getSomething(id));

	return ObjectWithSchema.create(new Something(), JsonHyperSchema.from(link));
}
 
開發者ID:Mercateo,項目名稱:rest-schemagen,代碼行數:11,代碼來源:ResourceClass.java

示例5: getWithQuery

import com.mercateo.common.rest.schemagen.types.ObjectWithSchema; //導入方法依賴的package包/類
@Path("/method/value")
@GET
@Produces(MediaType.APPLICATION_JSON)
public ObjectWithSchema<Void> getWithQuery(@QueryParam("test") String test) {

	return ObjectWithSchema.create(null, null);
}
 
開發者ID:Mercateo,項目名稱:rest-schemagen,代碼行數:8,代碼來源:ResourceClass.java

示例6: getSomethingArray

import com.mercateo.common.rest.schemagen.types.ObjectWithSchema; //導入方法依賴的package包/類
@Path("/methods/{id}")
@GET
@RolesAllowed("test")
public ObjectWithSchema<Something[]> getSomethingArray(@PathParam("id") String id) {
	Optional<Link> link = linkMetaFactory.createFactoryFor(ResourceClass.class).forCall(Rel.SELF,
			r -> r.getSomething(id));

	return ObjectWithSchema.create(new Something[0], JsonHyperSchema.from(link));
}
 
開發者ID:Mercateo,項目名稱:rest-schemagen,代碼行數:10,代碼來源:ResourceClass.java


注:本文中的com.mercateo.common.rest.schemagen.types.ObjectWithSchema.create方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。