Ascio Web Service v3
Class AbstractMark
Compatible classes | Description |
---|---|
TreatyOrStatuteMark | |
Trademark | |
CourtValidatedMark |
Property | Type | Description |
---|---|---|
Handle | Ascio Handle of the mark object Example: "JD123" | |
MarkName | Name of the mark | |
MarkId | ||
AuthInfo | Example: "X4FF!zu" | |
ServiceType | ||
GoodsAndServicesDescription | Exact description of the goods and services for which a registered trademark is protected | |
Labels | List of domain names without its TLD extension) | |
ClaimEmailNotification1 | ||
ClaimEmailNotification2 | ||
ClaimEmailNotification3 | ||
ClaimEmailNotification4 | ||
ClaimEmailNotification5 | ||
NotificationFrequency | ||
Owner | Mark Holder | |
Reseller | Mark Reseller | |
Extensions | ||
ObjectComment | Example: "Example Object Comment" |
package ascio.v3.examples;
import com.ascio.www._2013._02.*;
public class AbstractMarkExample {
public static AbstractMark main() {
Registrant owner = new Registrant();
owner.setFirstName("John");
owner.setLastName("Doe");
owner.setOrgName("Ascio");
owner.setAddress1("Address1Test");
owner.setAddress2("Address2Test");
owner.setCity("CityTest");
owner.setState("StateTest");
owner.setPostalCode("888349");
owner.setCountryCode("DK");
owner.setPhone("+45.123456789");
owner.setFax("+45.987654321");
owner.setEmail("administrator@ascio-test-domain.com");
owner.setType("owner");
owner.setDetails("DetailsTest");
owner.setOrganisationNumber("OrganisationNumberTest");
owner.setVatNumber("VatNumberTest");
owner.setNexusCategory("NexusCategoryTest");
KeyValue keyValue = new KeyValue();
keyValue.setKey("Title");
keyValue.setValue("Mr.");
ExtensionsKeyValue resellerExtensions[] = new ExtensionsKeyValue[]{keyValue};
resellerExtensions[0].setKey("Title");
resellerExtensions[0].setValue("Mrs.");
Contact reseller = new Contact();
reseller.setFirstName("John");
reseller.setLastName("Doe");
reseller.setOrgName("Ascio");
reseller.setAddress1("Address1Test");
reseller.setAddress2("Address2Test");
reseller.setCity("CityTest");
reseller.setState("StateTest");
reseller.setPostalCode("888349");
reseller.setCountryCode("DK");
reseller.setPhone("+45.123456789");
reseller.setFax("+45.987654321");
reseller.setEmail("administrator@ascio-test-domain.com");
reseller.setType("owner");
reseller.setDetails("DetailsTest");
reseller.setOrganisationNumber("OrganisationNumberTest");
reseller.setExtensions(resellerExtensions);
KeyValue keyValue = new KeyValue();
keyValue.setKey("Title");
keyValue.setValue("Mr.");
ExtensionsKeyValue abstractMarkExtensions[] = new ExtensionsKeyValue[]{keyValue};
AbstractMark abstractMark = new AbstractMark();
abstractMark.setHandle("JD123");
abstractMark.setMarkName("MarkNameTest");
abstractMark.setMarkId("MarkIdTest");
abstractMark.setAuthInfo("X4FF!zu");
abstractMark.setServiceType(MarkServiceType.Standard);
abstractMark.setGoodsAndServicesDescription("GoodsAndServicesDescriptionTest");
abstractMark.setLabels(new String[]{
});
abstractMark.setClaimEmailNotification1("ClaimEmailNotification1Test");
abstractMark.setClaimEmailNotification2("ClaimEmailNotification2Test");
abstractMark.setClaimEmailNotification3("ClaimEmailNotification3Test");
abstractMark.setClaimEmailNotification4("ClaimEmailNotification4Test");
abstractMark.setClaimEmailNotification5("ClaimEmailNotification5Test");
abstractMark.setNotificationFrequency(NotificationFrequencyType.Daily);
abstractMark.setOwner(owner);
abstractMark.setReseller(reseller);
abstractMark.setExtensions(abstractMarkExtensions);
abstractMark.setObjectComment("Example Object Comment");
Ascio Handle of the mark objectName of the markExact description of the goods and services for which a registered trademark is protectedList of domain names without its TLD extension)Mark HolderMark Reseller return abstractMark;package ascio.v3.examples;
import com.ascio.www._2013._02.*;
public class AbstractMarkExample {
public static AbstractMark main() {
Registrant owner = new Registrant();
owner.setFirstName("John");
owner.setLastName("Doe");
owner.setOrgName("Ascio");
owner.setAddress1("Address1Test");
owner.setAddress2("Address2Test");
owner.setCity("CityTest");
owner.setState("StateTest");
owner.setPostalCode("888349");
owner.setCountryCode("DK");
owner.setPhone("+45.123456789");
owner.setFax("+45.987654321");
owner.setEmail("administrator@ascio-test-domain.com");
owner.setType("owner");
owner.setDetails("DetailsTest");
owner.setOrganisationNumber("OrganisationNumberTest");
owner.setVatNumber("VatNumberTest");
owner.setNexusCategory("NexusCategoryTest");
KeyValue keyValue = new KeyValue();
keyValue.setKey("Title");
keyValue.setValue("Mr.");
ExtensionsKeyValue resellerExtensions[] = new ExtensionsKeyValue[]{keyValue};
resellerExtensions[0].setKey("Title");
resellerExtensions[0].setValue("Mrs.");
Contact reseller = new Contact();
reseller.setFirstName("John");
reseller.setLastName("Doe");
reseller.setOrgName("Ascio");
reseller.setAddress1("Address1Test");
reseller.setAddress2("Address2Test");
reseller.setCity("CityTest");
reseller.setState("StateTest");
reseller.setPostalCode("888349");
reseller.setCountryCode("DK");
reseller.setPhone("+45.123456789");
reseller.setFax("+45.987654321");
reseller.setEmail("administrator@ascio-test-domain.com");
reseller.setType("owner");
reseller.setDetails("DetailsTest");
reseller.setOrganisationNumber("OrganisationNumberTest");
reseller.setExtensions(resellerExtensions);
KeyValue keyValue = new KeyValue();
keyValue.setKey("Title");
keyValue.setValue("Mr.");
ExtensionsKeyValue abstractMarkExtensions[] = new ExtensionsKeyValue[]{keyValue};
AbstractMark abstractMark = new AbstractMark();
abstractMark.setHandle("JD123");
abstractMark.setMarkName("MarkNameTest");
abstractMark.setMarkId("MarkIdTest");
abstractMark.setAuthInfo("X4FF!zu");
abstractMark.setServiceType(MarkServiceType.Standard);
abstractMark.setGoodsAndServicesDescription("GoodsAndServicesDescriptionTest");
abstractMark.setLabels(new String[]{
});
abstractMark.setClaimEmailNotification1("ClaimEmailNotification1Test");
abstractMark.setClaimEmailNotification2("ClaimEmailNotification2Test");
abstractMark.setClaimEmailNotification3("ClaimEmailNotification3Test");
abstractMark.setClaimEmailNotification4("ClaimEmailNotification4Test");
abstractMark.setClaimEmailNotification5("ClaimEmailNotification5Test");
abstractMark.setNotificationFrequency(NotificationFrequencyType.Daily);
abstractMark.setOwner(owner);
abstractMark.setReseller(reseller);
abstractMark.setExtensions(abstractMarkExtensions);
abstractMark.setObjectComment("Example Object Comment");
WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.