congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
DefaultOnlineResource.checkWritePermission
Code IndexAdd Tabnine to your IDE (free)

How to use
checkWritePermission
method
in
org.apache.sis.metadata.iso.citation.DefaultOnlineResource

Best Java code snippets using org.apache.sis.metadata.iso.citation.DefaultOnlineResource.checkWritePermission (Showing top 14 results out of 315)

origin: org.apache.sis.core/sis-metadata

/**
 * Sets the detailed text description of what the online resource is/does.
 *
 * @param  newValue  the new description, or {@code null} if none.
 */
public void setDescription(final InternationalString newValue) {
  checkWritePermission();
  description = newValue;
}
origin: apache/sis

/**
 * Sets the code for function performed by the online resource.
 *
 * @param  newValue  the new function, or {@code null} if none.
 */
public void setFunction(final OnLineFunction newValue) {
  checkWritePermission(function);
  function = newValue;
}
origin: apache/sis

/**
 * Sets the location (address) for on-line access using a Uniform Resource Locator address or
 * similar addressing scheme such as "{@code http://www.statkart.no/isotc211}".
 *
 * @param  newValue  the new linkage, or {@code null} if none.
 */
public void setLinkage(final URI newValue) {
  checkWritePermission(linkage);
  linkage = newValue;
}
origin: apache/sis

/**
 * Sets the detailed text description of what the online resource is/does.
 *
 * @param  newValue  the new description, or {@code null} if none.
 */
public void setDescription(final InternationalString newValue) {
  checkWritePermission(description);
  description = newValue;
}
origin: apache/sis

/**
 * Sets the connection protocol to be used.
 *
 * @param  newValue  the new protocol, or {@code null} if none.
 */
public void setProtocol(final String newValue) {
  checkWritePermission(protocol);
  protocol = newValue;
}
origin: apache/sis

  /**
   * Sets the request to be used.
   *
   * @param  newValue  the new request, or {@code null} if none.
   *
   * @since 0.5
   */
  public void setProtocolRequest(final String newValue) {
    checkWritePermission(protocolRequest);
    protocolRequest = newValue;
  }
}
origin: org.apache.sis.core/sis-metadata

/**
 * Sets the name of the online resource.
 *
 * <div class="warning"><b>Upcoming API change — internationalization</b><br>
 * The argument type may be changed from {@code String} to {@code InternationalString} in GeoAPI 4.0.
 * </div>
 *
 * @param  newValue  the new name, or {@code null} if none.
 */
public void setName(final String newValue) {
  checkWritePermission();
  name = newValue;
}
origin: org.apache.sis.core/sis-metadata

/**
 * Sets the name of an application profile that can be used with the online resource.
 *
 * @param  newValue  the new application profile.
 */
public void setApplicationProfile(final String newValue) {
  checkWritePermission();
  applicationProfile = newValue;
}
origin: org.apache.sis.core/sis-metadata

/**
 * Sets the code for function performed by the online resource.
 *
 * @param  newValue  the new function, or {@code null} if none.
 */
public void setFunction(final OnLineFunction newValue) {
  checkWritePermission();
  function = newValue;
}
origin: org.apache.sis.core/sis-metadata

/**
 * Sets the connection protocol to be used.
 *
 * @param  newValue  the new protocol, or {@code null} if none.
 */
public void setProtocol(final String newValue) {
  checkWritePermission();
  protocol = newValue;
}
origin: org.apache.sis.core/sis-metadata

/**
 * Sets the location (address) for on-line access using a Uniform Resource Locator address or
 * similar addressing scheme such as "{@code http://www.statkart.no/isotc211}".
 *
 * @param  newValue  the new linkage, or {@code null} if none.
 */
public void setLinkage(final URI newValue) {
  checkWritePermission();
  linkage = newValue;
}
origin: org.apache.sis.core/sis-metadata

  /**
   * Sets the request to be used.
   *
   * @param  newValue  the new request, or {@code null} if none.
   *
   * @since 0.5
   */
  public void setProtocolRequest(final String newValue) {
    checkWritePermission();
    protocolRequest = newValue;
  }
}
origin: apache/sis

/**
 * Sets the name of an application profile that can be used with the online resource.
 *
 * @param  newValue  the new application profile.
 */
public void setApplicationProfile(final String newValue) {
  checkWritePermission(applicationProfile);
  applicationProfile = newValue;
}
origin: apache/sis

/**
 * Sets the name of the online resource.
 *
 * <div class="warning"><b>Upcoming API change — internationalization</b><br>
 * The argument type may be changed from {@code String} to {@code InternationalString} in GeoAPI 4.0.
 * </div>
 *
 * @param  newValue  the new name, or {@code null} if none.
 */
public void setName(final String newValue) {
  checkWritePermission(name);
  name = newValue;
}
org.apache.sis.metadata.iso.citationDefaultOnlineResourcecheckWritePermission

Popular methods of DefaultOnlineResource

  • <init>
    Constructs a new instance initialized with the values from the specified metadata object. This is a
  • setFunction
    Sets the code for function performed by the online resource.
  • setDescription
    Sets the detailed text description of what the online resource is/does.
  • setProtocol
    Sets the connection protocol to be used.
  • setLinkage
    Sets the location (address) for on-line access using a Uniform Resource Locator address or similar a
  • castOrCopy
    Returns a SIS metadata implementation with the values of the given arbitrary implementation. This me
  • getProtocolRequest
    Returns the request used to access the resource depending on the protocol. This is used mainly for P
  • setApplicationProfile
    Sets the name of an application profile that can be used with the online resource.
  • setName
    Sets the name of the online resource.Upcoming API change — internationalization The argument type ma

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • getExternalFilesDir (Context)
  • requestLocationUpdates (LocationManager)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now