@Override
  public int decode(InputStream iStream) throws IOException {
    int codeLength = 0;

    access_selector = new Unsigned8();
    codeLength += access_selector.decode(iStream);

    access_parameters = new Data();
    codeLength += access_parameters.decode(iStream);

    return codeLength;
  }